Fix overly long line in version.
authorMartin Pool <mbp@samba.org>
Tue, 19 Mar 2002 05:01:36 +0000 (05:01 +0000)
committerMartin Pool <mbp@samba.org>
Tue, 19 Mar 2002 05:01:36 +0000 (05:01 +0000)
options.c

index 2252156..dbaec6c 100644 (file)
--- 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, "<http://rsync.samba.org/>\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));