From 0037287bee3aed680824389f57fc6fc821f1cdb6 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 22 Nov 2019 19:59:40 -0500 Subject: [PATCH] zebra: Fix `show zebra client` display to handle columns right Before: Type Add Update Del ================================================== IPv4 11539033 272 10751107 IPv6 1122106 43 1047081 After: Type Add Update Del ================================================== IPv4 10517740 64 9729917 IPv6 1016590 8 941567 Signed-off-by: Donald Sharp --- zebra/zserv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebra/zserv.c b/zebra/zserv.c index d361929593..419f30e6d3 100644 --- a/zebra/zserv.c +++ b/zebra/zserv.c @@ -914,7 +914,7 @@ static void zebra_show_client_detail(struct vty *vty, struct zserv *client) zserv_command_string(last_write_cmd)); vty_out(vty, "\n"); - vty_out(vty, "Type Add Update Del \n"); + vty_out(vty, "Type Add Update Del \n"); vty_out(vty, "================================================== \n"); vty_out(vty, "IPv4 %-12d%-12d%-12d\n", client->v4_route_add_cnt, client->v4_route_upd8_cnt, client->v4_route_del_cnt);