From: Ralph Boehme Date: Sun, 3 May 2020 13:08:03 +0000 (+0200) Subject: smbd: realign synthetic_smb_fname() args in msg_file_was_renamed() X-Git-Tag: ldb-2.2.0~701 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=15f438dd22d1c86506c818e20f88a7c4bf15c4ad;p=thirdparty%2Fsamba.git smbd: realign synthetic_smb_fname() args in msg_file_was_renamed() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 68384ce440d..3b73fcbdccd 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -4685,8 +4685,11 @@ void msg_file_was_renamed(struct messaging_context *msg_ctx, msg->stream_name = NULL; } - smb_fname = synthetic_smb_fname( - msg, msg->base_name, msg->stream_name, NULL, 0); + smb_fname = synthetic_smb_fname(msg, + msg->base_name, + msg->stream_name, + NULL, + 0); if (smb_fname == NULL) { DBG_DEBUG("synthetic_smb_fname failed\n"); goto out;