From: Martin Pool Date: Tue, 19 Mar 2002 05:01:36 +0000 (+0000) Subject: Fix overly long line in version. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/7a52790b50065dafa41da714942a579f17472249 Fix overly long line in version. --- diff --git a/options.c b/options.c index 22521566..dbaec6ca 100644 --- a/options.c +++ b/options.c @@ -159,14 +159,15 @@ static void print_rsync_version(enum logcode f) "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", + "%shard links, %ssymlinks, batchfiles, \n", (int) (sizeof(OFF_T) * 8), - got_socketpair, hardlinks, links, ipv6); + got_socketpair, hardlinks, links); /* Note that this field may not have type ino_t. It depends * on the complicated interaction between largefile feature * macros. */ - rprintf(f, " %d-bit system inums, %d-bit internal inums\n", + rprintf(f, " %sIPv6, %d-bit system inums, %d-bit internal inums\n", + ipv6, (int) (sizeof(dumstat->st_ino) * 8), (int) (sizeof(INO64_T) * 8));