]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3: VFS: acl_tdb: Change acl_tdb_fget_nt_acl() to use fget_nt_acl_common().
authorJeremy Allison <jra@samba.org>
Mon, 13 Apr 2020 19:41:31 +0000 (12:41 -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_tdb.c

index 61c865c39f1908a35def7b63ede4b4a4d4b01a7d..0587f86fbdc4d39e9789a745444b8d7102cd24c5 100644 (file)
@@ -454,7 +454,7 @@ static NTSTATUS acl_tdb_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;
 }