diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-03-28 12:37:04 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-05 02:39:08 +0200 |
commit | 43e9be8894a2eaf883453de78acbade7b391a53e (patch) | |
tree | 86c52757bd1824edfa0418969963cc30076379e3 /source3/modules | |
parent | 5c89d12ca43e7949ace93c75ce59ca9fc0606521 (diff) | |
download | samba-43e9be8894a2eaf883453de78acbade7b391a53e.tar.gz samba-43e9be8894a2eaf883453de78acbade7b391a53e.tar.bz2 samba-43e9be8894a2eaf883453de78acbade7b391a53e.zip |
build: Remove sys_lseek wrapper
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_default.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |