diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-04-14 19:22:37 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-05-09 06:18:20 +0200 |
commit | 5d517f41664920faa5863cbf36b5953ad4700ebd (patch) | |
tree | 07fd80a054c955d7265fdbfec00839405a41bc26 /source3 | |
parent | 188d0f097572955f643d926edf40e6841b874c1e (diff) | |
download | samba-5d517f41664920faa5863cbf36b5953ad4700ebd.tar.gz samba-5d517f41664920faa5863cbf36b5953ad4700ebd.tar.bz2 samba-5d517f41664920faa5863cbf36b5953ad4700ebd.zip |
vfs: Remove unused security_info argument in vfz_zfsacl.c
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/modules/vfs_zfsacl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/modules/vfs_zfsacl.c b/source3/modules/vfs_zfsacl.c index 743f33b821..93a0faa6d5 100644 --- a/source3/modules/vfs_zfsacl.c +++ b/source3/modules/vfs_zfsacl.c @@ -42,7 +42,6 @@ */ static NTSTATUS zfs_get_nt_acl_common(TALLOC_CTX *mem_ctx, const char *name, - uint32 security_info, SMB4ACL_T **ppacl) { int naces, i; @@ -203,7 +202,6 @@ static NTSTATUS zfsacl_fget_nt_acl(struct vfs_handle_struct *handle, status = zfs_get_nt_acl_common(frame, fsp->fsp_name->base_name, - security_info, &pacl); if (!NT_STATUS_IS_OK(status)) { TALLOC_FREE(frame); @@ -224,7 +222,7 @@ static NTSTATUS zfsacl_get_nt_acl(struct vfs_handle_struct *handle, NTSTATUS status; TALLOC_CTX *frame = talloc_stackframe(); - status = zfs_get_nt_acl_common(frame, name, security_info, &pacl); + status = zfs_get_nt_acl_common(frame, name, &pacl); if (!NT_STATUS_IS_OK(status)) { TALLOC_FREE(frame); return status; |