]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
smbd: align file_set_dosmode() args one per line
authorRalph Boehme <slow@samba.org>
Tue, 28 Apr 2020 16:06:21 +0000 (18:06 +0200)
committerJeremy Allison <jra@samba.org>
Wed, 29 Apr 2020 16:39:40 +0000 (16:39 +0000)
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/smbd/dosmode.c
source3/smbd/proto.h

index b86642adcfe7a5f729641da7d51f8dc59771dc14..95d1606f1220341c38edc2ab8b4b0bcfac0decbd 100644 (file)
@@ -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;
index e7b5e3239a7e063cd12460a2ad03816fcd36a65e..d926058857adf5612fa2cfc9a9665ebc2da9db8e 100644 (file)
@@ -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);