summaryrefslogtreecommitdiffstats
path: root/source3/smbd/trans2.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-08-13 19:40:52 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-08-15 11:44:45 +1000
commitd83276c13f3bfb25e98399827b1d5e10e709480d (patch)
treef9af0006ee695c76acd42ee29f7c3195c064a250 /source3/smbd/trans2.c
parent3b409324d3196b8f08df63189fc7d0802f03d757 (diff)
downloadsamba-d83276c13f3bfb25e98399827b1d5e10e709480d.tar.gz
samba-d83276c13f3bfb25e98399827b1d5e10e709480d.tar.xz
samba-d83276c13f3bfb25e98399827b1d5e10e709480d.zip
s3-smbd: Call sys_acl_get_tagtype() 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/smbd/trans2.c')
-rw-r--r--source3/smbd/trans2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c
index 7f3f9cc1ffb..9a311a3260e 100644
--- a/source3/smbd/trans2.c
+++ b/source3/smbd/trans2.c
@@ -3868,7 +3868,7 @@ static bool marshall_posix_acl(connection_struct *conn, char *pdata, SMB_STRUCT_
entry_id = SMB_ACL_NEXT_ENTRY;
}
- if (SMB_VFS_SYS_ACL_GET_TAG_TYPE(conn, entry, &tagtype) == -1) {
+ if (sys_acl_get_tag_type(entry, &tagtype) == -1) {
DEBUG(0,("marshall_posix_acl: SMB_VFS_SYS_ACL_GET_TAG_TYPE failed.\n"));
return False;
}