]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
vfs_glusterfs: realign synthetic_smb_fname() args in vfs_gluster_realpath()
authorRalph Boehme <slow@samba.org>
Sun, 3 May 2020 13:04:36 +0000 (15:04 +0200)
committerJeremy Allison <jra@samba.org>
Tue, 5 May 2020 19:18:39 +0000 (19:18 +0000)
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/modules/vfs_glusterfs.c

index efb6989190f494fa0139344242b944efdd43b252..85009b66d7b59eaedc2a5b4f0e555afdcc0a1084 100644 (file)
@@ -1523,7 +1523,11 @@ static struct smb_filename *vfs_gluster_realpath(struct vfs_handle_struct *handl
                        smb_fname->base_name,
                        resolved_path);
        if (result != NULL) {
-               result_fname = synthetic_smb_fname(ctx, result, NULL, NULL, 0);
+               result_fname = synthetic_smb_fname(ctx,
+                                                  result,
+                                                  NULL,
+                                                  NULL,
+                                                  0);
        }
 
        SAFE_FREE(resolved_path);