From: Jeremy Allison Date: Tue, 14 Apr 2020 19:48:29 +0000 (-0700) Subject: s3: VFS: acl_common: Change SMB_VFS_GET_NT_ACL() -> SMB_VFS_GET_NT_ACL_AT() in get_nt... X-Git-Tag: ldb-2.2.0~589 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=367088233b62070aafd9866a21aac95125573571;p=thirdparty%2Fsamba.git 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 --- 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 "