]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
ip: align the name of the 'nohandler' stat
authorJakub Kicinski <kuba@kernel.org>
Sat, 1 May 2021 03:08:54 +0000 (20:08 -0700)
committerDavid Ahern <dsahern@kernel.org>
Thu, 6 May 2021 14:41:19 +0000 (14:41 +0000)
Before:

    RX: bytes  packets  errors  dropped missed  mcast
    8848233056 8548168  0       0       0       0
    RX errors: length   crc     frame   fifo    overrun   nohandler
               0        0       0       0       0       101
    TX: bytes  packets  errors  dropped carrier collsns compressed
    1142925945 4683483  0       0       0       0       101
    TX errors: aborted  fifo   window heartbeat transns
               0        0       0       0       14

After:

    RX: bytes  packets  errors  dropped missed  mcast
    8848297833 8548461  0       0       0       0
    RX errors: length   crc     frame   fifo    overrun nohandler
               0        0       0       0       0       101
    TX: bytes  packets  errors  dropped carrier collsns compressed
    1143049820 4683865  0       0       0       0       101
    TX errors: aborted  fifo   window heartbeat transns
               0        0       0       0       14

Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David Ahern <dsahern@kernel.org>
ip/ipaddress.c

index cfb24f5c1e341f3d35cf511be39c2ab14d9f1e5f..8783b70d81e20a733627a5496da19e08867984eb 100644 (file)
@@ -757,7 +757,7 @@ static void __print_link_stats(FILE *fp, struct rtattr *tb[])
                if (show_stats > 1) {
                        fprintf(fp, "%s", _SL_);
                        fprintf(fp, "    RX errors: length   crc     frame   fifo    overrun%s%s",
-                               s->rx_nohandler ? "   nohandler" : "", _SL_);
+                               s->rx_nohandler ? " nohandler" : "", _SL_);
                        fprintf(fp, "               ");
                        print_num(fp, 8, s->rx_length_errors);
                        print_num(fp, 7, s->rx_crc_errors);