From: Ralph Boehme Date: Tue, 26 Jan 2021 09:55:42 +0000 (+0100) Subject: vfs_aixacl: fix regression from f4c2f867f035fcbe3d547d5635d058b0aec7636a X-Git-Tag: tevent-0.11.0~1977 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7114150f43751ab869323b91da83705b1e1ab465;p=thirdparty%2Fsamba.git vfs_aixacl: fix regression from f4c2f867f035fcbe3d547d5635d058b0aec7636a BUG: https://bugzilla.samba.org/show_bug.cgi?id=14620 Signed-off-by: Ralph Boehme Reviewed-by: Björn Jacke Autobuild-User(master): Ralph Böhme Autobuild-Date(master): Tue Jan 26 20:05:39 UTC 2021 on sn-devel-184 --- diff --git a/source3/modules/vfs_aixacl.c b/source3/modules/vfs_aixacl.c index f7493794a45..d266f446008 100644 --- a/source3/modules/vfs_aixacl.c +++ b/source3/modules/vfs_aixacl.c @@ -149,9 +149,9 @@ int aixacl_sys_acl_set_fd(vfs_handle_struct *handle, /* * This is no longer a handle based call. */ - return = chacl(fsp->fsp_name->base_name, - file_acl, - file_acl->acl_len); + return chacl(fsp->fsp_name->base_name, + file_acl, + file_acl->acl_len); } rc = fchacl(fsp_get_io_fd(fsp),file_acl,file_acl->acl_len);