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/lib/smbrun.c | |
parent | 5c89d12ca43e7949ace93c75ce59ca9fc0606521 (diff) | |
download | samba-43e9be8894a2eaf883453de78acbade7b391a53e.tar.gz |
build: Remove sys_lseek wrapper
Diffstat (limited to 'source3/lib/smbrun.c')
-rw-r--r-- | source3/lib/smbrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/smbrun.c b/source3/lib/smbrun.c index b38dee1665b..0ecdc0d6837 100644 --- a/source3/lib/smbrun.c +++ b/source3/lib/smbrun.c @@ -132,7 +132,7 @@ static int smbrun_internal(const char *cmd, int *outfd, bool sanitize) /* Reset the seek pointer. */ if (outfd) { - sys_lseek(*outfd, 0, SEEK_SET); + lseek(*outfd, 0, SEEK_SET); } #if defined(WIFEXITED) && defined(WEXITSTATUS) |