X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/06963d0fca72b8af5c708544ba7972582b54d90b..9dec7aa9c10e72a365378bb88745c6c64c76b4ae:/options.c diff --git a/options.c b/options.c index 0316be7d..01f4d827 100644 --- a/options.c +++ b/options.c @@ -111,6 +111,7 @@ static void print_rsync_version(int f) char const *got_socketpair = "no "; char const *hardlinks = "no "; char const *links = "no "; + char const *ipv6 = "no "; #ifdef HAVE_SOCKETPAIR got_socketpair = ""; @@ -124,16 +125,19 @@ static void print_rsync_version(int f) links = ""; #endif +#if INET6 + ipv6 = ""; +#endif + rprintf(f, "%s version %s protocol version %d\n", - RSYNC_NAME, VERSION, PROTOCOL_VERSION); + RSYNC_NAME, RSYNC_VERSION, PROTOCOL_VERSION); rprintf(f, "Copyright (C) 1996-2001 by Andrew Tridgell and others\n"); rprintf(f, "\n"); rprintf(f, "Capabilities: %d-bit files, %ssocketpairs, " - "%shard links, %ssymlinks, batchfiles\n\n", + "%shard links, %ssymlinks, batchfiles, %sIPv6\n\n", (int) (sizeof(OFF_T) * 8), - got_socketpair, - hardlinks, links); + got_socketpair, hardlinks, links, ipv6); #ifdef NO_INT64 rprintf(f, "WARNING: no 64-bit integers on this platform!\n");