From: Guus Sliepen Date: Thu, 6 Dec 2012 15:57:57 +0000 (+0100) Subject: Fix display of cumulative packet counters. X-Git-Tag: release-1.1pre5~22 X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=58026f72a17b316f1b9756400f0ee9e9f519f877 Fix display of cumulative packet counters. --- diff --git a/doc/tincctl.8.in b/doc/tincctl.8.in index 8fdd2727..f6b5010f 100644 --- a/doc/tincctl.8.in +++ b/doc/tincctl.8.in @@ -206,7 +206,7 @@ Fractional seconds are honored. Intervals lower than 0.1 seconds are not allowed. .It Ic c Toggle between displaying current traffic rates (in packets and bytes per second) -and cummulative traffic (total packets and bytes since the tinc daemon started). +and cumulative traffic (total packets and bytes since the tinc daemon started). .It Ic n Sort the list of nodes by name. .It Ic i diff --git a/src/top.c b/src/top.c index 8cd82be3..28ab56f4 100644 --- a/src/top.c +++ b/src/top.c @@ -229,7 +229,7 @@ static void redraw(void) { attrset(A_DIM); if(cumulative) - mvprintw(row, 0, "%-16s %10"PRIu64" %10.0f %10"PRIu64" %10.0f", + mvprintw(row, 0, "%-16s %10.0f %10.0f %10.0f %10.0f", node->name, node->in_packets * pscale, node->in_bytes * bscale, node->out_packets * pscale, node->out_bytes * bscale); else mvprintw(row, 0, "%-16s %10.0f %10.0f %10.0f %10.0f",