X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/736a6a291cf0fc9ab9410f300174a70e868e4122..6abd193fe3f8e7b986c388e7642adc08516e8279:/options.c diff --git a/options.c b/options.c index 4bc482e6..b79dffec 100644 --- a/options.c +++ b/options.c @@ -143,7 +143,7 @@ static void print_rsync_version(enum logcode f) rprintf(f, "%s version %s protocol version %d\n", RSYNC_NAME, RSYNC_VERSION, PROTOCOL_VERSION); rprintf(f, - "Copyright (C) 1996-2001 by Andrew Tridgell and others\n"); + "Copyright (C) 1996-2002 by Andrew Tridgell and others\n"); rprintf(f, "\n"); rprintf(f, "Capabilities: %d-bit files, %ssocketpairs, " "%shard links, %ssymlinks, batchfiles, %sIPv6,\n", @@ -153,9 +153,9 @@ static void print_rsync_version(enum logcode f) /* Note that this field may not have type ino_t. It depends * on the complicated interaction between largefile feature * macros. */ - rprintf(f, " %d-bit inums, %d-bit INO_T\n", + rprintf(f, " %d-bit system inums, %d-bit internal inums\n", (int) (sizeof(dumstat->st_ino) * 8), - (int) (sizeof(INO_T) * 8)); + (int) (sizeof(INO64_T) * 8)); #ifdef NO_INT64 rprintf(f, "WARNING: no 64-bit integers on this platform!\n");