From: Andrew Bartlett Date: Wed, 10 Oct 2012 05:59:18 +0000 (+1100) Subject: vfs: Use posix_sys_acl_blob_get_file in vfs_hpux for posix ACLs X-Git-Tag: ldb-1.1.14~308 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4eb0e406f15c5fcf3b73361978edcac0a8db5b58;p=thirdparty%2Fsamba.git vfs: Use posix_sys_acl_blob_get_file in vfs_hpux for posix ACLs --- diff --git a/source3/modules/vfs_hpuxacl.c b/source3/modules/vfs_hpuxacl.c index 6a0fb9b6184..a05ca44f248 100644 --- a/source3/modules/vfs_hpuxacl.c +++ b/source3/modules/vfs_hpuxacl.c @@ -1156,6 +1156,8 @@ static bool hpux_acl_check(HPUX_ACL_T hpux_acl, int count) static struct vfs_fn_pointers hpuxacl_fns = { .sys_acl_get_file_fn = hpuxacl_sys_acl_get_file, .sys_acl_get_fd_fn = hpuxacl_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 = hpuxacl_sys_acl_set_file, .sys_acl_set_fd_fn = hpuxacl_sys_acl_set_fd, .sys_acl_delete_def_file_fn = hpuxacl_sys_acl_delete_def_file,