Skip to content

Commit

Permalink
zebra: Fix show zebra client display to handle columns right
Browse files Browse the repository at this point in the history
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 <sharpd@cumulusnetworks.com>
  • Loading branch information
donaldsharp committed Nov 23, 2019
1 parent 588a302 commit 0037287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zebra/zserv.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 0037287

Please sign in to comment.