From 30ce7e8a648284a177c798804b609e45f6712aa2 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 9 Sep 2001 04:41:14 +0000 Subject: [PATCH] 64-bit files depends on the size of OFF_T, not off64_t --- options.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/options.c b/options.c index 2b45512a..7c33efad 100644 --- a/options.c +++ b/options.c @@ -52,7 +52,7 @@ int io_error = 0; int read_only = 0; int module_id = -1; int am_server = 0; -int am_sender=0; +int am_sender = 0; int recurse = 0; int am_daemon=0; int do_stats=0; @@ -126,7 +126,7 @@ static void print_rsync_version(int f) rprintf(f, "\n"); rprintf(f, "Capabilities: %d-bit files, %ssocketpairs, " "%shard links, %ssymlinks, batchfiles\n\n", - (int) (sizeof(int64) * 8), + (int) (sizeof(OFF_T) * 8), got_socketpair, hardlinks, links); -- 2.34.1