diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-10-10 16:59:18 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-10-11 12:25:13 +1100 |
commit | 4eb0e406f15c5fcf3b73361978edcac0a8db5b58 (patch) | |
tree | 4ac77727f451e602c09e3689529849d062d1ca5b /source3 | |
parent | abee79f99db802adc8e13a2baedf7817bf937786 (diff) | |
download | samba-4eb0e406f15c5fcf3b73361978edcac0a8db5b58.tar.gz samba-4eb0e406f15c5fcf3b73361978edcac0a8db5b58.tar.bz2 samba-4eb0e406f15c5fcf3b73361978edcac0a8db5b58.zip |
vfs: Use posix_sys_acl_blob_get_file in vfs_hpux for posix ACLs
Diffstat (limited to 'source3')
-rw-r--r-- | source3/modules/vfs_hpuxacl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/modules/vfs_hpuxacl.c b/source3/modules/vfs_hpuxacl.c index 6a0fb9b618..a05ca44f24 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, |