1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-28 09:49:30 +03:00

vfs_aixacl: fix regression from f4c2f867f0

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14620

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Björn Jacke <bjacke@samba.org>

Autobuild-User(master): Ralph Böhme <slow@samba.org>
Autobuild-Date(master): Tue Jan 26 20:05:39 UTC 2021 on sn-devel-184
This commit is contained in:
Ralph Boehme
2021-01-26 10:55:42 +01:00
parent e06f86bbd9
commit 7114150f43

View File

@ -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);