diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-10-10 16:59:35 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-10-11 12:25:13 +1100 |
commit | 010e589c29335fc48446051347d6af5f787981a4 (patch) | |
tree | 6ca7327a8da747430fe284b98d7968af413d6f77 /source3/modules/vfs_posixacl.c | |
parent | 598b565c632aae8792dc2917eda2e2b7365d4cec (diff) | |
download | samba-010e589c29335fc48446051347d6af5f787981a4.tar.gz |
vfs: Use posix_sys_acl_blob_get_file in vfs_posixacl for posix ACLs
Diffstat (limited to 'source3/modules/vfs_posixacl.c')
-rw-r--r-- | source3/modules/vfs_posixacl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/modules/vfs_posixacl.c b/source3/modules/vfs_posixacl.c index 1714b137d6c..6963aae8fd8 100644 --- a/source3/modules/vfs_posixacl.c +++ b/source3/modules/vfs_posixacl.c @@ -368,6 +368,8 @@ static acl_t smb_acl_to_posix(const struct smb_acl_t *acl) static struct vfs_fn_pointers posixacl_fns = { .sys_acl_get_file_fn = posixacl_sys_acl_get_file, .sys_acl_get_fd_fn = posixacl_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 = posixacl_sys_acl_set_file, .sys_acl_set_fd_fn = posixacl_sys_acl_set_fd, .sys_acl_delete_def_file_fn = posixacl_sys_acl_delete_def_file, |