From 422494a8e630e2ca89386344eaa5346388698a32 Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Sat, 3 Dec 2011 20:45:04 -0800 Subject: vfs: Make function pointer names consistent. They all end in _fn Autobuild-User: Richard Sharpe Autobuild-Date: Mon Dec 12 04:58:40 CET 2011 on sn-devel-104 --- source3/locking/posix.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source3/locking/posix.c') diff --git a/source3/locking/posix.c b/source3/locking/posix.c index 0ff2395d60..abedd5600d 100644 --- a/source3/locking/posix.c +++ b/source3/locking/posix.c @@ -187,7 +187,7 @@ bool smb_vfs_call_lock(struct vfs_handle_struct *handle, SMB_OFF_T count, int type) { VFS_FIND(lock); - return handle->fns->lock(handle, fsp, op, offset, count, type); + return handle->fns->lock_fn(handle, fsp, op, offset, count, type); } /**************************************************************************** @@ -238,7 +238,8 @@ bool smb_vfs_call_getlock(struct vfs_handle_struct *handle, SMB_OFF_T *pcount, int *ptype, pid_t *ppid) { VFS_FIND(getlock); - return handle->fns->getlock(handle, fsp, poffset, pcount, ptype, ppid); + return handle->fns->getlock_fn(handle, fsp, poffset, pcount, ptype, + ppid); } /**************************************************************************** -- cgit