From: Volker Lendecke Date: Fri, 31 Aug 2012 12:11:45 +0000 (+0200) Subject: s3: Make an if statement a bit easier to read X-Git-Url: http://git.samba.org/samba.git/?p=kai%2Fsamba.git;a=commitdiff_plain;h=d5f845c0d3ca185181760bce3731d31a71db4f32 s3: Make an if statement a bit easier to read Fix indentation a bit Signed-off-by: Jeremy Allison Autobuild-User(master): Jeremy Allison Autobuild-Date(master): Sat Sep 1 07:07:12 CEST 2012 on sn-devel-104 --- diff --git a/source3/smbd/open.c b/source3/smbd/open.c index b69db8b5e10..381f3b5b27f 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -2011,8 +2011,9 @@ static NTSTATUS open_file_ntcreate(connection_struct *conn, /* We only care about matching attributes on file exists and * overwrite. */ - if (!posix_open && file_existed && ((create_disposition == FILE_OVERWRITE) || - (create_disposition == FILE_OVERWRITE_IF))) { + if (!posix_open && file_existed && + ((create_disposition == FILE_OVERWRITE) || + (create_disposition == FILE_OVERWRITE_IF))) { if (!open_match_attributes(conn, existing_dos_attributes, new_dos_attributes, smb_fname->st.st_ex_mode,