소스 검색

remove accidental change

Emmo Emminghaus 6 년 전
부모
커밋
e5c22eac0d
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/borg/platform/posix.pyx

+ 2 - 1
src/borg/platform/posix.pyx

@@ -115,4 +115,5 @@ def posix_acl_use_stored_uid_gid(acl):
 
 def getosusername():
     """Return the os user name."""
-    return uid2user(os.getuid())
+    uid = os.getuid()
+    return uid2user(uid, uid)