diff options
Diffstat (limited to 'source3/modules/vfs_gpfs.c')
-rw-r--r-- | source3/modules/vfs_gpfs.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index 79c0e2cd30..a461fb3a11 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -646,8 +646,8 @@ static bool gpfsacl_process_smbacl(vfs_handle_struct *handle, if (gacl == NULL) { /* out of memory */ return False; } - ret = smbd_gpfs_putacl(fsp->fsp_name->base_name, - GPFS_PUTACL_STRUCT | GPFS_ACL_SAMBA, gacl); + ret = gpfswrap_putacl(fsp->fsp_name->base_name, + GPFS_PUTACL_STRUCT | GPFS_ACL_SAMBA, gacl); if ((ret != 0) && (errno == EINVAL)) { DEBUG(10, ("Retry without nfs41 control flags\n")); @@ -656,9 +656,9 @@ static bool gpfsacl_process_smbacl(vfs_handle_struct *handle, if (gacl == NULL) { /* out of memory */ return False; } - ret = smbd_gpfs_putacl(fsp->fsp_name->base_name, - GPFS_PUTACL_STRUCT | GPFS_ACL_SAMBA, - gacl); + ret = gpfswrap_putacl(fsp->fsp_name->base_name, + GPFS_PUTACL_STRUCT | GPFS_ACL_SAMBA, + gacl); } if (ret != 0) { @@ -1127,8 +1127,8 @@ static int gpfsacl_sys_acl_set_file(vfs_handle_struct *handle, return -1; } - result = smbd_gpfs_putacl(discard_const_p(char, name), - GPFS_PUTACL_STRUCT|GPFS_ACL_SAMBA, gpfs_acl); + result = gpfswrap_putacl(discard_const_p(char, name), + GPFS_PUTACL_STRUCT|GPFS_ACL_SAMBA, gpfs_acl); SAFE_FREE(gpfs_acl); return result; |