Remove xxhash from capabilities list.
authorWayne Davison <wayne@opencoder.net>
Tue, 26 May 2020 04:27:21 +0000 (21:27 -0700)
committerWayne Davison <wayne@opencoder.net>
Tue, 26 May 2020 04:31:40 +0000 (21:31 -0700)
It's now listed in the "Checksum list:" output.

options.c

index 07511b05b3befd1559f5dff5c5854ed2138f9a2e..9f5a24d6b68d43be91dc4fbab47de0dd6e07c5b6 100644 (file)
--- a/options.c
+++ b/options.c
@@ -581,7 +581,6 @@ static void print_rsync_version(enum logcode f)
        char const *iconv = "no ";
        char const *ipv6 = "no ";
        char const *simd = "no ";
-       char const *xxhash = "no ";
        STRUCT_STAT *dumstat;
 
 #if SUBPROTOCOL_VERSION != 0
@@ -621,9 +620,6 @@ static void print_rsync_version(enum logcode f)
 #ifdef HAVE_SIMD
        simd = "";
 #endif
-#ifdef SUPPORT_XXHASH
-       xxhash = "";
-#endif
 
        rprintf(f, "%s  version %s  protocol version %d%s\n",
                RSYNC_NAME, RSYNC_VERSION, PROTOCOL_VERSION, subprotocol);
@@ -637,8 +633,8 @@ static void print_rsync_version(enum logcode f)
                (int)(sizeof (int64) * 8));
        rprintf(f, "    %ssocketpairs, %shardlinks, %ssymlinks, %sIPv6, batchfiles, %sinplace,\n",
                got_socketpair, hardlinks, links, ipv6, have_inplace);
-       rprintf(f, "    %sappend, %sACLs, %sxattrs, %siconv, %ssymtimes, %sprealloc, %sSIMD, %sxxhash\n",
-               have_inplace, acls, xattrs, iconv, symtimes, prealloc, simd, xxhash);
+       rprintf(f, "    %sappend, %sACLs, %sxattrs, %siconv, %ssymtimes, %sprealloc, %sSIMD\n",
+               have_inplace, acls, xattrs, iconv, symtimes, prealloc, simd);
 
        rprintf(f,"\n");