vfs_streams_depot: realign synthetic_smb_fname() to one arg per line
authorRalph Boehme <slow@samba.org>
Thu, 30 Apr 2020 09:44:15 +0000 (11:44 +0200)
committerJeremy Allison <jra@samba.org>
Tue, 5 May 2020 19:18:38 +0000 (19:18 +0000)
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/modules/vfs_streams_depot.c

index eb1cb60aaeaf71295c5e8d4a23e08b77337e6f40..a5e135b9a5066e2c1eab104e04029542be51e7e0 100644 (file)
@@ -953,7 +953,11 @@ static bool collect_one_stream(const struct smb_filename *dirfname,
                goto out;
        }
 
-       smb_fname = synthetic_smb_fname(talloc_tos(), sname, NULL, NULL, 0);
+       smb_fname = synthetic_smb_fname(talloc_tos(),
+                                       sname,
+                                       NULL,
+                                       NULL,
+                                       0);
        if (smb_fname == NULL) {
                state->status = NT_STATUS_NO_MEMORY;
                ret = false;