]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
vfs_catia: realign synthetic_smb_fname() args in catia_readdir_attr()
authorRalph Boehme <slow@samba.org>
Sun, 3 May 2020 06:28:14 +0000 (08:28 +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_catia.c

index e90adaa2d460215630aed523cc03090f71169599..49e6ec70a408c58ece9b65c3ba4ff1cafdb379b6 100644 (file)
@@ -2245,8 +2245,11 @@ static NTSTATUS catia_readdir_attr(struct vfs_handle_struct *handle,
                return status;
        }
 
-       smb_fname = synthetic_smb_fname(talloc_tos(), fname, NULL,
-                                       &smb_fname_in->st, 0);
+       smb_fname = synthetic_smb_fname(talloc_tos(),
+                                       fname,
+                                       NULL,
+                                       &smb_fname_in->st,
+                                       0);
 
        status = SMB_VFS_NEXT_READDIR_ATTR(handle, smb_fname, mem_ctx, pattr_data);