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/client/client.c | |
parent | 5c89d12ca43e7949ace93c75ce59ca9fc0606521 (diff) | |
download | samba-43e9be8894a2eaf883453de78acbade7b391a53e.tar.gz samba-43e9be8894a2eaf883453de78acbade7b391a53e.tar.xz samba-43e9be8894a2eaf883453de78acbade7b391a53e.zip |
build: Remove sys_lseek wrapper
Diffstat (limited to 'source3/client/client.c')
-rw-r--r-- | source3/client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 0d60103f26..f10e56348c 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1110,7 +1110,7 @@ static int do_get(const char *rname, const char *lname_in, bool reget) if (reget) { handle = sys_open(lname, O_WRONLY|O_CREAT, 0644); if (handle >= 0) { - start = sys_lseek(handle, 0, SEEK_END); + start = lseek(handle, 0, SEEK_END); if (start == -1) { d_printf("Error seeking local file\n"); return 1; |