From 5d517f41664920faa5863cbf36b5953ad4700ebd Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sun, 14 Apr 2013 19:22:37 +1000 Subject: [PATCH] vfs: Remove unused security_info argument in vfz_zfsacl.c Reviewed-by: Jeremy Allison --- source3/modules/vfs_zfsacl.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source3/modules/vfs_zfsacl.c b/source3/modules/vfs_zfsacl.c index 743f33b821a..93a0faa6d5c 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; -- 2.34.1