]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
vfs_gpfs: realign synthetic_smb_fname() args in gpfsacl_emu_chmod()
authorRalph Boehme <slow@samba.org>
Sun, 3 May 2020 13:04:58 +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_gpfs.c

index 193b9b502f9aab7d9f0193b217c098f6603c6dd3..38b740ba800ee20e2177c81096c8d8819f907588 100644 (file)
@@ -1489,8 +1489,11 @@ static int gpfsacl_emu_chmod(vfs_handle_struct *handle,
        }
 
        /* don't add complementary DENY ACEs here */
-       fake_fsp.fsp_name = synthetic_smb_fname(
-               frame, path, NULL, NULL, 0);
+       fake_fsp.fsp_name = synthetic_smb_fname(frame,
+                                               path,
+                                               NULL,
+                                               NULL,
+                                               0);
        if (fake_fsp.fsp_name == NULL) {
                errno = ENOMEM;
                TALLOC_FREE(frame);