]> git.meshlink.io Git - meshlink/commitdiff
Fix display of cumulative packet counters.
authorGuus Sliepen <guus@tinc-vpn.org>
Thu, 6 Dec 2012 15:57:57 +0000 (16:57 +0100)
committerGuus Sliepen <guus@tinc-vpn.org>
Thu, 6 Dec 2012 15:59:35 +0000 (16:59 +0100)
doc/tincctl.8.in
src/top.c

index 8fdd27273de0dcd372b68c20bfd84886e4799085..f6b5010fb882b782ae7cd1235b941b0e0c772e10 100644 (file)
@@ -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
index 8cd82be320db94ec62b111bcf13777ccfd766afc..28ab56f486fe7d71c2b86e6130ef395bfa13dc2b 100644 (file)
--- 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",