From: Ralph Boehme Date: Sun, 3 May 2020 13:04:58 +0000 (+0200) Subject: vfs_gpfs: realign synthetic_smb_fname() args in gpfsacl_emu_chmod() X-Git-Tag: ldb-2.2.0~709 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64f4981b7d976d736923bcda932635646c025a7f;p=thirdparty%2Fsamba.git vfs_gpfs: realign synthetic_smb_fname() args in gpfsacl_emu_chmod() Signed-off-by: Ralph Boehme Reviewed-by: Jeremy Allison --- diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index 193b9b502f9..38b740ba800 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -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);