Commit 30ce7e8a authored by Andrew Tridgell's avatar Andrew Tridgell

64-bit files depends on the size of OFF_T, not off64_t

parent f0af1e5e
......@@ -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, "<http://rsync.samba.org/>\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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment