vfs_xattr_tdb: realign synthetic_smb_fname() args in xattr_tdb_get_file_id()
authorRalph Boehme <slow@samba.org>
Sun, 3 May 2020 13:06:12 +0000 (15:06 +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_xattr_tdb.c

index c87be90f940694ef4a02763c56dff4a67c3b3012..65ad33d7b6c13b9cda8e7bd06d7edc9ac6acd0c7 100644 (file)
@@ -38,7 +38,11 @@ static int xattr_tdb_get_file_id(struct vfs_handle_struct *handle,
        TALLOC_CTX *frame = talloc_stackframe();
        struct smb_filename *smb_fname;
 
-       smb_fname = synthetic_smb_fname(frame, path, NULL, NULL, 0);
+       smb_fname = synthetic_smb_fname(frame,
+                                       path,
+                                       NULL,
+                                       NULL,
+                                       0);
        if (smb_fname == NULL) {
                TALLOC_FREE(frame);
                errno = ENOMEM;