From: Andrew Tridgell Date: Sun, 10 May 1998 13:01:59 +0000 (+0000) Subject: the statistics reporting was the wrong way around for client receipt X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/d7ff63cf1a8228882777c53b6a7be0364f4bc758 the statistics reporting was the wrong way around for client receipt mode! It reported the read/written backwards. --- diff --git a/main.c b/main.c index 638dd75d..ea7622ad 100644 --- a/main.c +++ b/main.c @@ -48,8 +48,8 @@ static void report(int f) out = write_total(); tsize = total_size; } else { - in = read_longint(f); out = read_longint(f); + in = read_longint(f); tsize = read_longint(f); }