Changed NO_INT64 to INT64_IS_OFF_T because off_t might actually be

64 bits.  The code now only complains if int64 is really too short.
This commit is contained in:
Wayne Davison
2004-07-22 19:28:45 +00:00
parent 4db88e5b8f
commit 28deecca55
3 changed files with 17 additions and 13 deletions

View File

@@ -197,8 +197,9 @@ static void print_rsync_version(enum logcode f)
get_panic_action());
#endif
#ifdef NO_INT64
rprintf(f, "WARNING: no 64-bit integers on this platform!\n");
#ifdef INT64_IS_OFF_T
if (sizeof (int64) < 8)
rprintf(f, "WARNING: no 64-bit integers on this platform!\n");
#endif
rprintf(f,