From: Ralph Boehme Date: Thu, 30 Apr 2020 10:01:44 +0000 (+0200) Subject: smbd: realign args calling synthetic_smb_fname() in change_dir_owner_to_parent() X-Git-Tag: ldb-2.2.0~722 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7c10d078ebcbf05b14e726e7ad8c521363e12581;p=thirdparty%2Fsamba.git smbd: realign args calling synthetic_smb_fname() in change_dir_owner_to_parent() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 5f612533267..68384ce440d 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -944,7 +944,11 @@ static NTSTATUS change_dir_owner_to_parent(connection_struct *conn, goto chdir; } - smb_fname_cwd = synthetic_smb_fname(ctx, ".", NULL, NULL, 0); + smb_fname_cwd = synthetic_smb_fname(ctx, + ".", + NULL, + NULL, + 0); if (smb_fname_cwd == NULL) { status = NT_STATUS_NO_MEMORY; goto chdir;