From 367088233b62070aafd9866a21aac95125573571 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 14 Apr 2020 12:48:29 -0700 Subject: [PATCH] s3: VFS: acl_common: Change SMB_VFS_GET_NT_ACL() -> SMB_VFS_GET_NT_ACL_AT() in get_nt_acl_common_at(). Signed-off-by: Jeremy Allison Reviewed-by: Ralph Boehme --- source3/modules/vfs_acl_common.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/source3/modules/vfs_acl_common.c b/source3/modules/vfs_acl_common.c index 81e3e343eb6..09332a31579 100644 --- a/source3/modules/vfs_acl_common.c +++ b/source3/modules/vfs_acl_common.c @@ -824,11 +824,12 @@ NTSTATUS get_nt_acl_common_at( goto fail; } } else { - status = SMB_VFS_NEXT_GET_NT_ACL(handle, - smb_fname_in, - security_info, - mem_ctx, - &psd); + status = SMB_VFS_NEXT_GET_NT_ACL_AT(handle, + dirfsp, + smb_fname_in, + security_info, + mem_ctx, + &psd); if (!NT_STATUS_IS_OK(status)) { DBG_DEBUG("get_next_acl for file %s " -- 2.47.3