From: Andrew Bartlett Date: Wed, 10 Oct 2012 05:52:02 +0000 (+1100) Subject: vfs: Use posix_sys_acl_blob_get_file in vfs_aixacl X-Git-Tag: ldb-1.1.14~313 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=79edc54a94b9a42df86130174faf010010a05f82;p=samba.git vfs: Use posix_sys_acl_blob_get_file in vfs_aixacl --- diff --git a/source3/modules/vfs_aixacl.c b/source3/modules/vfs_aixacl.c index 9f66d2a70cc..25d9089ba5c 100644 --- a/source3/modules/vfs_aixacl.c +++ b/source3/modules/vfs_aixacl.c @@ -180,6 +180,8 @@ int aixacl_sys_acl_delete_def_file(vfs_handle_struct *handle, static struct vfs_fn_pointers vfs_aixacl_fns = { .sys_acl_get_file_fn = aixacl_sys_acl_get_file, .sys_acl_get_fd_fn = aixacl_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 = aixacl_sys_acl_set_file, .sys_acl_set_fd_fn = aixacl_sys_acl_set_fd, .sys_acl_delete_def_file_fn = aixacl_sys_acl_delete_def_file,