From: Andrew Bartlett Date: Wed, 10 Oct 2012 05:59:43 +0000 (+1100) Subject: vfs: Use posix_sys_acl_blob_get_file in vfs_solarisacl for posix ACLs X-Git-Tag: ldb-1.1.14~305 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=998bdd516adf5edb5c5884f92f04dc690aa1ce27;p=thirdparty%2Fsamba.git vfs: Use posix_sys_acl_blob_get_file in vfs_solarisacl for posix ACLs --- 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,