From: Ralph Boehme Date: Thu, 7 May 2020 18:46:06 +0000 (+0200) Subject: smbd: realign args to open_file() in open_file_ntcreate() X-Git-Tag: ldb-2.2.0~415 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c67a3e8ceb47e1fe3032577aafcd53177862dd2;p=thirdparty%2Fsamba.git smbd: realign args to open_file() in open_file_ntcreate() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/smbd/open.c b/source3/smbd/open.c index a0221e69544..ceefe6c557d 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -3679,10 +3679,14 @@ static NTSTATUS open_file_ntcreate(connection_struct *conn, (unsigned int)unx_mode, (unsigned int)access_mask, (unsigned int)open_access_mask)); - fsp_open = open_file(fsp, req, parent_dir_fname, - flags|flags2, unx_mode, access_mask, - open_access_mask, &new_file_created); - + fsp_open = open_file(fsp, + req, + parent_dir_fname, + flags|flags2, + unx_mode, + access_mask, + open_access_mask, + &new_file_created); if (NT_STATUS_EQUAL(fsp_open, NT_STATUS_NETWORK_BUSY)) { if (file_existed && S_ISFIFO(fsp->fsp_name->st.st_ex_mode)) { DEBUG(10, ("FIFO busy\n"));