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 /lib | |
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 'lib')
-rw-r--r-- | lib/nexthop_group.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/nexthop_group.c b/lib/nexthop_group.c index e48624724..d7dbfd8a4 100644 --- a/lib/nexthop_group.c +++ b/lib/nexthop_group.c @@ -320,7 +320,7 @@ void nexthop_group_write_nexthop(struct vty *vty, struct nexthop *nh) char buf[100]; struct vrf *vrf; - vty_out(vty, " nexthop "); + vty_out(vty, "nexthop "); switch (nh->type) { case NEXTHOP_TYPE_IFINDEX: |