From ebb00c8e29808073c84c77e4e50b55d37c09ff16 Mon Sep 17 00:00:00 2001 From: David Dykstra Date: Mon, 15 Mar 1999 21:17:58 +0000 Subject: [PATCH] Changed the protocol version to 20 so that --stats will work without -v in both directions. --- main.c | 5 ++--- rsync.h | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/main.c b/main.c index 5bd5b8a1..0eab26ba 100644 --- a/main.c +++ b/main.c @@ -42,8 +42,7 @@ static void report(int f) if (f == -1 || !am_sender) return; } - send_stats = verbose || - ((remote_version >= 20) && (PROTOCOL_VERSION >= 20)); + send_stats = verbose || (remote_version >= 20); if (am_server) { if (am_sender && send_stats) { int64 w; @@ -71,7 +70,7 @@ static void report(int f) if (do_stats) { if (!am_sender && !send_stats) { /* missing the bytes written by the generator */ - rprintf(FINFO, "\nCannot show stats as receiver because protocol version is less than 20\n"); + rprintf(FINFO, "\nCannot show stats as receiver because remote protocol version is less than 20\n"); rprintf(FINFO, "Use --stats -v to show stats\n"); return; } diff --git a/rsync.h b/rsync.h index a31b7e2c..32d564cb 100644 --- a/rsync.h +++ b/rsync.h @@ -47,7 +47,7 @@ #define SAME_TIME (1<<7) /* update this if you make incompatible changes */ -#define PROTOCOL_VERSION 19 +#define PROTOCOL_VERSION 20 #define MIN_PROTOCOL_VERSION 11 #define MAX_PROTOCOL_VERSION 30 -- 2.34.1