summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_tru64acl.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-10-10 16:59:53 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-10-11 12:25:13 +1100
commitbac3ed2696e621ee18f4332e5404bbf2af0c7ccb (patch)
treefa452d33cdbdef9127614a4507fffbb1daf20ed2 /source3/modules/vfs_tru64acl.c
parent998bdd516adf5edb5c5884f92f04dc690aa1ce27 (diff)
downloadsamba-bac3ed2696e621ee18f4332e5404bbf2af0c7ccb.tar.gz
samba-bac3ed2696e621ee18f4332e5404bbf2af0c7ccb.tar.bz2
samba-bac3ed2696e621ee18f4332e5404bbf2af0c7ccb.zip
vfs: Use posix_sys_acl_blob_get_file in vfs_tru64acl for posix ACLs
Diffstat (limited to 'source3/modules/vfs_tru64acl.c')
-rw-r--r--source3/modules/vfs_tru64acl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/modules/vfs_tru64acl.c b/source3/modules/vfs_tru64acl.c
index 6eadee613c..97f4d5c30b 100644
--- a/source3/modules/vfs_tru64acl.c
+++ b/source3/modules/vfs_tru64acl.c
@@ -473,6 +473,8 @@ static SMB_ACL_PERM_T tru64_permset_to_smb(const acl_perm_t tru64_permset)
static struct vfs_fn_pointers tru64acl_fns = {
.sys_acl_get_file_fn = tru64acl_sys_acl_get_file,
.sys_acl_get_fd_fn = tru64acl_sys_acl_get_fd,
+ .sys_acl_blob_get_file_fn = posix_sys_acl_blob_get_file,
+ .sys_acl_blob_get_fd_fn = posix_sys_acl_blob_get_fd,
.sys_acl_set_file_fn = tru64acl_sys_acl_set_file,
.sys_acl_set_fd_fn = tru64acl_sys_acl_set_fd,
.sys_acl_delete_def_file_fn = tru64acl_sys_acl_delete_def_file,