diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2017-07-13 19:42:42 +0200 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2017-07-14 10:20:03 +0200 |
| commit | 55f70b671f064c315887ec9dd46382eefdc40b78 (patch) | |
| tree | 0b82e487fc265a03ef83a8b7f87ceb701a3b4c35 /ospf6d/ospf6_zebra.c | |
| parent | 61b7d449bd022b0455f148ee9187293a62afdfcb (diff) | |
*: remove VTYNL, part 4 of 6
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ospf6d/ospf6_zebra.c')
| -rw-r--r-- | ospf6d/ospf6_zebra.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/ospf6d/ospf6_zebra.c b/ospf6d/ospf6_zebra.c index 3ca9182f0c..b609b4bb20 100644 --- a/ospf6d/ospf6_zebra.c +++ b/ospf6d/ospf6_zebra.c @@ -320,11 +320,10 @@ DEFUN (show_zebra, } vty_out (vty, "Zebra Infomation\n"); - vty_out (vty, " enable: %d fail: %d%s", - zclient->enable, zclient->fail, VTYNL); - vty_out (vty, " redistribute default: %d%s", - vrf_bitmap_check (zclient->default_information, VRF_DEFAULT), - VTYNL); + vty_out (vty, " enable: %d fail: %d\n", + zclient->enable, zclient->fail); + vty_out (vty, " redistribute default: %d\n", + vrf_bitmap_check (zclient->default_information, VRF_DEFAULT)); vty_out (vty, " redistribute:"); for (i = 0; i < ZEBRA_ROUTE_MAX; i++) { |
