the statistics reporting was the wrong way around for client receipt
authorAndrew Tridgell <tridge@samba.org>
Sun, 10 May 1998 13:01:59 +0000 (13:01 +0000)
committerAndrew Tridgell <tridge@samba.org>
Sun, 10 May 1998 13:01:59 +0000 (13:01 +0000)
mode! It reported the read/written backwards.

main.c

diff --git a/main.c b/main.c
index 638dd75..ea7622a 100644 (file)
--- 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);
        }