]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
net: vfs: realign synthetic_smb_fname() args in net_vfs_get_ntacl()
authorRalph Boehme <slow@samba.org>
Sun, 3 May 2020 13:09:15 +0000 (15:09 +0200)
committerJeremy Allison <jra@samba.org>
Tue, 5 May 2020 19:18:40 +0000 (19:18 +0000)
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/utils/net_vfs.c

index d5f6beddb88c59790441c477bf4823905a190dc8..a448b9e490f511e74147df0fea12d2b8455d8da5 100644 (file)
@@ -224,7 +224,11 @@ static int net_vfs_get_ntacl(struct net_context *net,
        }
 
        path = argv[1];
-       smb_fname = synthetic_smb_fname(state.mem_ctx, path, NULL, NULL, 0);
+       smb_fname = synthetic_smb_fname(state.mem_ctx,
+                                       path,
+                                       NULL,
+                                       NULL,
+                                       0);
        if (smb_fname == NULL) {
                goto done;
        }