From d7ff63cf1a8228882777c53b6a7be0364f4bc758 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 10 May 1998 13:01:59 +0000 Subject: [PATCH] the statistics reporting was the wrong way around for client receipt mode! It reported the read/written backwards. --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.34.1