| commit | ebd33e0cea4d1f54702167ce014823c72f2054bc | [log] [tgz] |
|---|---|---|
| author | Wayne Davison <wayned@samba.org> | Wed Apr 06 02:08:21 2005 +0000 |
| committer | Wayne Davison <wayned@samba.org> | Wed Apr 06 02:08:21 2005 +0000 |
| tree | 43ad3b1b9a26b06f8fc93c2d03a52e215f2af53e | |
| parent | 5f2c5bf110870f22f1c42fa86e663523359b2947 [diff] [blame] |
Use the new HAVE_LSEEK64 define.
diff --git a/syscall.c b/syscall.c index 5cdf052..2f73ba3 100644 --- a/syscall.c +++ b/syscall.c
@@ -243,7 +243,7 @@ OFF_T do_lseek(int fd, OFF_T offset, int whence) { -#if SIZEOF_OFF64_T +#ifdef HAVE_LSEEK64 off64_t lseek64(); return lseek64(fd, offset, whence); #else