From: Wayne Davison Date: Tue, 26 May 2020 04:27:21 +0000 (-0700) Subject: Remove xxhash from capabilities list. X-Git-Tag: v3.2.0pre1~94 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dff9dd56a0935a1670322f7f95615cafd0db3197;p=thirdparty%2Frsync.git Remove xxhash from capabilities list. It's now listed in the "Checksum list:" output. --- diff --git a/options.c b/options.c index 07511b05..9f5a24d6 100644 --- 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");