diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-11-11 22:07:49 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-11-12 00:05:12 +1100 |
commit | a6a01552efe69f6450425b001ad600ec056bd18c (patch) | |
tree | 9ca34a2b92aac8ea7b4bd6d005cd8d12507f810f /source4/scripting | |
parent | 312f8ddae27f6fdf4f325edfa890a7b96cd348b8 (diff) | |
download | samba-a6a01552efe69f6450425b001ad600ec056bd18c.tar.gz samba-a6a01552efe69f6450425b001ad600ec056bd18c.tar.bz2 samba-a6a01552efe69f6450425b001ad600ec056bd18c.zip |
pysmbd: Add SMB_ACL_EXECUTE to the mask set by make_simple_acl()
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Jelmer Vernooij <jelmer@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/scripting')
-rw-r--r-- | source4/scripting/python/samba/tests/posixacl.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/scripting/python/samba/tests/posixacl.py b/source4/scripting/python/samba/tests/posixacl.py index 5e10f8ddf8..50518f0d0e 100644 --- a/source4/scripting/python/samba/tests/posixacl.py +++ b/source4/scripting/python/samba/tests/posixacl.py @@ -246,7 +246,7 @@ class PosixAclMappingTests(TestCaseInTempDir): self.assertEquals(posix_acl.acl[2].a_perm, 0) self.assertEquals(posix_acl.acl[3].a_type, smb_acl.SMB_ACL_MASK) - self.assertEquals(posix_acl.acl[3].a_perm, 6) + self.assertEquals(posix_acl.acl[3].a_perm, 7) def test_setposixacl_group_getposixacl(self): lp = LoadParm() @@ -274,7 +274,7 @@ class PosixAclMappingTests(TestCaseInTempDir): self.assertEquals(posix_acl.acl[3].info.gid, BA_gid) self.assertEquals(posix_acl.acl[4].a_type, smb_acl.SMB_ACL_MASK) - self.assertEquals(posix_acl.acl[4].a_perm, 6) + self.assertEquals(posix_acl.acl[4].a_perm, 7) def test_setntacl_sysvol_check_getposixacl(self): lp = LoadParm() |