From ab3152bf2273af2cc2aa12322c059ea1b4fb5686 Mon Sep 17 00:00:00 2001 From: Ralph Boehme Date: Sun, 3 May 2020 15:09:15 +0200 Subject: [PATCH] net: vfs: realign synthetic_smb_fname() args in net_vfs_get_ntacl() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- source3/utils/net_vfs.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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; } -- 2.47.3