From bac3ed2696e621ee18f4332e5404bbf2af0c7ccb Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 10 Oct 2012 16:59:53 +1100 Subject: [PATCH] vfs: Use posix_sys_acl_blob_get_file in vfs_tru64acl for posix ACLs --- source3/modules/vfs_tru64acl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source3/modules/vfs_tru64acl.c b/source3/modules/vfs_tru64acl.c index 6eadee613c7..97f4d5c30bc 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, -- 2.34.1