1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

vfs_catia: Rename argument for flock function

MS-SMB2 and the smbd code refer to this field as share_access. Use the
same name in the function argument.

Signed-off-by: Christof Schmitt <cs@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Christof Schmitt 2020-01-03 12:08:38 -07:00 committed by Jeremy Allison
parent 974aae418f
commit 537d226ed9

View File

@ -2072,7 +2072,7 @@ static bool catia_lock(vfs_handle_struct *handle,
static int catia_kernel_flock(struct vfs_handle_struct *handle,
struct files_struct *fsp,
uint32_t share_mode,
uint32_t share_access,
uint32_t access_mask)
{
struct catia_cache *cc = NULL;
@ -2083,7 +2083,7 @@ static int catia_kernel_flock(struct vfs_handle_struct *handle,
return -1;
}
ret = SMB_VFS_NEXT_KERNEL_FLOCK(handle, fsp, share_mode, access_mask);
ret = SMB_VFS_NEXT_KERNEL_FLOCK(handle, fsp, share_access, access_mask);
CATIA_FETCH_FSP_POST_NEXT(&cc, fsp);