From: Wayne Davison Date: Wed, 6 Apr 2005 02:08:21 +0000 (+0000) Subject: Use the new HAVE_LSEEK64 define. X-Git-Tag: v2.6.5pre1~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebd33e0cea4d1f54702167ce014823c72f2054bc;p=thirdparty%2Frsync.git Use the new HAVE_LSEEK64 define. --- diff --git a/syscall.c b/syscall.c index 5cdf052a..2f73ba3b 100644 --- a/syscall.c +++ b/syscall.c @@ -243,7 +243,7 @@ int do_fstat(int fd, STRUCT_STAT *st) 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