diff options
Diffstat (limited to 'source3/lib/recvfile.c')
-rw-r--r-- | source3/lib/recvfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/recvfile.c b/source3/lib/recvfile.c index c74cdd5a67d..6c8a1a3b577 100644 --- a/source3/lib/recvfile.c +++ b/source3/lib/recvfile.c @@ -63,7 +63,7 @@ static ssize_t default_sys_recvfile(int fromfd, } if (tofd != -1 && offset != (SMB_OFF_T)-1) { - if (sys_lseek(tofd, offset, SEEK_SET) == -1) { + if (lseek(tofd, offset, SEEK_SET) == -1) { if (errno != ESPIPE) { return -1; } |