fix up the int64 handling a little. It should work on a few more
[rsync/rsync.git] / io.c
diff --git a/io.c b/io.c
index 95177c4..0021d95 100644 (file)
--- a/io.c
+++ b/io.c
@@ -187,7 +187,7 @@ int64 read_longint(int f)
 
        if (ret != -1) return ret;
 
-#ifndef HAVE_LONGLONG
+#ifdef NO_INT64
        fprintf(FERROR,"Integer overflow - attempted 64 bit offset\n");
        exit_cleanup(1);
 #else