From 43e9be8894a2eaf883453de78acbade7b391a53e Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 28 Mar 2012 12:37:04 +1100 Subject: build: Remove sys_lseek wrapper --- source3/modules/vfs_default.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/modules') diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index f5a64759be..35073143c0 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -634,7 +634,7 @@ static SMB_OFF_T vfswrap_lseek(vfs_handle_struct *handle, files_struct *fsp, SMB /* Cope with 'stat' file opens. */ if (fsp->fh->fd != -1) - result = sys_lseek(fsp->fh->fd, offset, whence); + result = lseek(fsp->fh->fd, offset, whence); /* * We want to maintain the fiction that we can seek -- cgit