diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-03-20 21:43:54 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-04-06 19:22:43 +0200 |
commit | 57cdafc411806760b230499eab82df560566d893 (patch) | |
tree | 01a312e997bed51da37a3f93f79577456164dc20 /pbrd/pbr_nht.c | |
parent | pbrd: fix null pointer deref when showing ifaces (diff) | |
download | frr-57cdafc411806760b230499eab82df560566d893.tar.xz frr-57cdafc411806760b230499eab82df560566d893.zip |
lib, pbrd: rm extra space when displaying nexthop
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'pbrd/pbr_nht.c')
-rw-r--r-- | pbrd/pbr_nht.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pbrd/pbr_nht.c b/pbrd/pbr_nht.c index 7586790c8..c8a58e46f 100644 --- a/pbrd/pbr_nht.c +++ b/pbrd/pbr_nht.c @@ -771,7 +771,7 @@ static void pbr_nht_show_nhg_nexthops(struct hash_backet *b, void *data) struct pbr_nexthop_cache *pnhc = b->data; struct vty *vty = data; - vty_out(vty, "\tValid: %d", pnhc->valid); + vty_out(vty, "\tValid: %d ", pnhc->valid); nexthop_group_write_nexthop(vty, pnhc->nexthop); } |