summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_solarisacl.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-10-10 16:59:43 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-10-11 12:25:13 +1100
commit998bdd516adf5edb5c5884f92f04dc690aa1ce27 (patch)
tree57ccbca504f0a0aac5688fd87c480b83f379c815 /source3/modules/vfs_solarisacl.c
parent010e589c29335fc48446051347d6af5f787981a4 (diff)
downloadsamba-998bdd516adf5edb5c5884f92f04dc690aa1ce27.tar.gz
vfs: Use posix_sys_acl_blob_get_file in vfs_solarisacl for posix ACLs
Diffstat (limited to 'source3/modules/vfs_solarisacl.c')
-rw-r--r--source3/modules/vfs_solarisacl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/modules/vfs_solarisacl.c b/source3/modules/vfs_solarisacl.c
index ad25e88f62c..a5f787f4941 100644
--- a/source3/modules/vfs_solarisacl.c
+++ b/source3/modules/vfs_solarisacl.c
@@ -751,6 +751,8 @@ static bool solaris_acl_check(SOLARIS_ACL_T solaris_acl, int count)
static struct vfs_fn_pointers solarisacl_fns = {
.sys_acl_get_file_fn = solarisacl_sys_acl_get_file,
.sys_acl_get_fd_fn = solarisacl_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 = solarisacl_sys_acl_set_file,
.sys_acl_set_fd_fn = solarisacl_sys_acl_set_fd,
.sys_acl_delete_def_file_fn = solarisacl_sys_acl_delete_def_file,