s3: VFS: acl_xattr: Change acl_xattr_fget_nt_acl() to use fget_nt_acl_common().
authorJeremy Allison <jra@samba.org>
Mon, 13 Apr 2020 19:42:49 +0000 (12:42 -0700)
committerJeremy Allison <jra@samba.org>
Thu, 7 May 2020 19:27:34 +0000 (19:27 +0000)
Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
source3/modules/vfs_acl_xattr.c

index db7ceef6d8c4e272c06e72bca8e86af755d378fd..6f5302aaea526a68bdc874f4b1c2626e6a4bafc9 100644 (file)
@@ -363,7 +363,7 @@ static NTSTATUS acl_xattr_fget_nt_acl(vfs_handle_struct *handle,
                                      struct security_descriptor **ppdesc)
 {
        NTSTATUS status;
-       status = get_nt_acl_common(get_acl_blob, handle, fsp, NULL,
+       status = fget_nt_acl_common(fget_acl_blob, handle, fsp,
                                   security_info, mem_ctx, ppdesc);
        return status;
 }