s3/lib: realign synthetic_smb_fname() args in synthetic_smb_fname_split()
authorRalph Boehme <slow@samba.org>
Sun, 3 May 2020 06:26:47 +0000 (08:26 +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/lib/filename_util.c

index 37dc6554018cda6392e8a68807a8c9dc1b422719..da77862998a180c57e1d98a91cba90d245b84c24 100644 (file)
@@ -116,7 +116,11 @@ struct smb_filename *synthetic_smb_fname_split(TALLOC_CTX *ctx,
                return NULL;
        }
 
-       ret = synthetic_smb_fname(ctx, base_name, stream_name, NULL, 0);
+       ret = synthetic_smb_fname(ctx,
+                                 base_name,
+                                 stream_name,
+                                 NULL,
+                                 0);
        TALLOC_FREE(base_name);
        TALLOC_FREE(stream_name);
        return ret;