From: Ralph Boehme Date: Tue, 28 Apr 2020 16:06:21 +0000 (+0200) Subject: smbd: align file_set_dosmode() args one per line X-Git-Tag: ldb-2.2.0~819 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=224b140583937f450bbc8946206f11bc6b87eccc;p=thirdparty%2Fsamba.git smbd: align file_set_dosmode() args one per line Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c index b86642adcfe..95d1606f122 100644 --- a/source3/smbd/dosmode.c +++ b/source3/smbd/dosmode.c @@ -950,8 +950,11 @@ NTSTATUS dos_mode_at_recv(struct tevent_req *req, uint32_t *dosmode) attribute also. ********************************************************************/ -int file_set_dosmode(connection_struct *conn, struct smb_filename *smb_fname, - uint32_t dosmode, const char *parent_dir, bool newfile) +int file_set_dosmode(connection_struct *conn, + struct smb_filename *smb_fname, + uint32_t dosmode, + const char *parent_dir, + bool newfile) { int mask=0; mode_t tmp; diff --git a/source3/smbd/proto.h b/source3/smbd/proto.h index e7b5e3239a7..d926058857a 100644 --- a/source3/smbd/proto.h +++ b/source3/smbd/proto.h @@ -268,8 +268,11 @@ struct tevent_req *dos_mode_at_send(TALLOC_CTX *mem_ctx, files_struct *dir_fsp, struct smb_filename *smb_fname); NTSTATUS dos_mode_at_recv(struct tevent_req *req, uint32_t *dosmode); -int file_set_dosmode(connection_struct *conn, struct smb_filename *smb_fname, - uint32_t dosmode, const char *parent_dir, bool newfile); +int file_set_dosmode(connection_struct *conn, + struct smb_filename *smb_fname, + uint32_t dosmode, + const char *parent_dir, + bool newfile); NTSTATUS file_set_sparse(connection_struct *conn, struct files_struct *fsp, bool sparse);