diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-08-13 19:47:16 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-08-15 11:44:46 +1000 |
commit | d8fb9e77ec98b055e1214e4ccf9d3f047354ac97 (patch) | |
tree | 00fc1b88489444b8f61af88223dda98f0a4193f8 /source3 | |
parent | 6a2f142b4980b8ce71980cd5bf8bd7b2428503d1 (diff) | |
download | samba-d8fb9e77ec98b055e1214e4ccf9d3f047354ac97.tar.gz samba-d8fb9e77ec98b055e1214e4ccf9d3f047354ac97.tar.bz2 samba-d8fb9e77ec98b055e1214e4ccf9d3f047354ac97.zip |
s3-smbd: Call sys_acl_free_qualifier() directly rather than via the VFS
This will allow us to remove the struct smb_acl_t manipuations from the VFS layer,
which will be reduced to handling the get/set functions.
Andrew Bartlett
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/posix_acls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/posix_acls.c b/source3/smbd/posix_acls.c index b369582987..e63f8b7e93 100644 --- a/source3/smbd/posix_acls.c +++ b/source3/smbd/posix_acls.c @@ -2667,7 +2667,7 @@ static canon_ace *canonicalise_acl(struct connection_struct *conn, unix_ug.type = ID_TYPE_UID; unix_ug.id = *puid; owner_type = UID_ACE; - SMB_VFS_SYS_ACL_FREE_QUALIFIER(conn, (void *)puid,tagtype); + sys_acl_free_qualifier((void *)puid,tagtype); break; } case SMB_ACL_GROUP_OBJ: @@ -2688,7 +2688,7 @@ static canon_ace *canonicalise_acl(struct connection_struct *conn, unix_ug.type = ID_TYPE_GID; unix_ug.id = *pgid; owner_type = GID_ACE; - SMB_VFS_SYS_ACL_FREE_QUALIFIER(conn, (void *)pgid,tagtype); + sys_acl_free_qualifier((void *)pgid,tagtype); break; } case SMB_ACL_MASK: |