Commit ebb00c8e authored by David Dykstra's avatar David Dykstra

Changed the protocol version to 20 so that --stats will work without -v in

both directions.
parent 6543dc0c
......@@ -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;
}
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment