X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/0dd046d36f41bbabba9261152c9891bc78fcabac..e86d98cbaaf92e03a5b4b9242ed1cc0a830712f0:/syscall.c 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