From: Ralph Boehme Date: Thu, 7 May 2020 14:50:20 +0000 (+0200) Subject: smbd: realign args in calls to open_directory() X-Git-Tag: ldb-2.2.0~427 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=227e14acd6df38290365ef649b06ad8a02cf4955;p=thirdparty%2Fsamba.git smbd: realign args in calls to open_directory() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 3ff21526b3b..d3a18cea3a0 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -5631,10 +5631,16 @@ static NTSTATUS create_file_unixpath(connection_struct *conn, */ oplock_request = 0; - status = open_directory( - conn, req, smb_fname, access_mask, share_access, - create_disposition, create_options, file_attributes, - &info, &fsp); + status = open_directory(conn, + req, + smb_fname, + access_mask, + share_access, + create_disposition, + create_options, + file_attributes, + &info, + &fsp); } else { /* @@ -5703,11 +5709,16 @@ static NTSTATUS create_file_unixpath(connection_struct *conn, } oplock_request = 0; - status = open_directory( - conn, req, smb_fname, access_mask, - share_access, create_disposition, - create_options, file_attributes, - &info, &fsp); + status = open_directory(conn, + req, + smb_fname, + access_mask, + share_access, + create_disposition, + create_options, + file_attributes, + &info, + &fsp); } }