Browse Source

remove accidental change

Emmo Emminghaus 6 years ago
parent
commit
e5c22eac0d
1 changed files with 2 additions and 1 deletions
  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)