]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
vfs_default: realign synthetic_smb_fname() args in vfswrap_fs_capabilities()
authorRalph Boehme <slow@samba.org>
Sun, 3 May 2020 13:01:54 +0000 (15:01 +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_default.c

index 6609cabe2e09a6547dd5182ec7b4f90edfef72ea..6b5ab1e2ef459e618bc89c8e8791bfa0decd04cf 100644 (file)
@@ -131,8 +131,11 @@ static uint32_t vfswrap_fs_capabilities(struct vfs_handle_struct *handle,
        struct vfs_statvfs_struct statbuf;
        int ret;
 
-       smb_fname_cpath = synthetic_smb_fname(talloc_tos(), conn->connectpath,
-                                             NULL, NULL, 0);
+       smb_fname_cpath = synthetic_smb_fname(talloc_tos(),
+                                             conn->connectpath,
+                                             NULL,
+                                             NULL,
+                                             0);
        if (smb_fname_cpath == NULL) {
                return caps;
        }