From: Jeremy Allison Date: Tue, 14 Apr 2020 19:46:38 +0000 (-0700) Subject: s3: VFS: acl_common. s3: smbd: Change SMB_VFS_GET_NT_ACL() -> SMB_VFS_GET_NT_ACL_AT... X-Git-Tag: ldb-2.2.0~590 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a920df8faf828a09d53b27a2e5c843e203a799a1;p=thirdparty%2Fsamba.git s3: VFS: acl_common. s3: smbd: Change SMB_VFS_GET_NT_ACL() -> SMB_VFS_GET_NT_ACL_AT() in validate_nt_acl_blob(). 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 71a48163b70..81e3e343eb6 100644 --- a/source3/modules/vfs_acl_common.c +++ b/source3/modules/vfs_acl_common.c @@ -538,11 +538,12 @@ static NTSTATUS validate_nt_acl_blob(TALLOC_CTX *mem_ctx, mem_ctx, &psd_fs); } else { - status = SMB_VFS_NEXT_GET_NT_ACL(handle, - smb_fname, - HASH_SECURITY_INFO, - mem_ctx, - &psd_fs); + status = SMB_VFS_NEXT_GET_NT_ACL_AT(handle, + dirfsp, + smb_fname, + HASH_SECURITY_INFO, + mem_ctx, + &psd_fs); } if (!NT_STATUS_IS_OK(status)) {