summaryrefslogtreecommitdiff
path: root/python/samba/tests/posixacl.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/samba/tests/posixacl.py')
-rw-r--r--python/samba/tests/posixacl.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/python/samba/tests/posixacl.py b/python/samba/tests/posixacl.py
index bb104f7232..a6b51182d6 100644
--- a/python/samba/tests/posixacl.py
+++ b/python/samba/tests/posixacl.py
@@ -32,8 +32,10 @@ from samba.samba3 import param as s3param
# for entry in posix_acl.acl:
# print "a_type: %d" % entry.a_type
# print "a_perm: %o" % entry.a_perm
-# print "uid: %d" % entry.uid
-# print "gid: %d" % entry.gid
+# if entry.a_type == smb_acl.SMB_ACL_USER:
+# print "uid: %d" % entry.uid
+# if entry.a_type == smb_acl.SMB_ACL_GROUP:
+# print "gid: %d" % entry.gid
class PosixAclMappingTests(TestCaseInTempDir):