From: Ralph Boehme Date: Sun, 3 May 2020 13:09:15 +0000 (+0200) Subject: net: vfs: realign synthetic_smb_fname() args in net_vfs_get_ntacl() X-Git-Tag: ldb-2.2.0~697 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ab3152bf2273af2cc2aa12322c059ea1b4fb5686;p=thirdparty%2Fsamba.git net: vfs: realign synthetic_smb_fname() args in net_vfs_get_ntacl() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/utils/net_vfs.c b/source3/utils/net_vfs.c index d5f6beddb88..a448b9e490f 100644 --- a/source3/utils/net_vfs.c +++ b/source3/utils/net_vfs.c @@ -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; }