2
0
Emmo Emminghaus 6 жил өмнө
parent
commit
e5c22eac0d

+ 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)