summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2017-07-17 11:16:03 -0400
committerQuentin Young <qlyoung@cumulusnetworks.com>2017-07-17 11:18:56 -0400
commit2b2f79ae69efb99c3d8f3ef82c0ab19e38bde96b (patch)
tree8c634f6bd618db11091139e64a80b47578e9ca67
parentd62a17aedeb0eebdba98238874bb13d62c48dbf9 (diff)
eigrpd: remove last vty_outln
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
-rw-r--r--eigrpd/eigrp_vty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/eigrpd/eigrp_vty.c b/eigrpd/eigrp_vty.c
index 13cd0ff059..d416183f52 100644
--- a/eigrpd/eigrp_vty.c
+++ b/eigrpd/eigrp_vty.c
@@ -78,8 +78,8 @@ static int config_write_network(struct vty *vty, struct eigrp *eigrp)
if (i != zclient->redist_default
&& vrf_bitmap_check(zclient->redist[AFI_IP][i],
VRF_DEFAULT))
- vty_outln(vty, " redistribute %s",
- zebra_route_string(i));
+ vty_out(vty, " redistribute %s\n",
+ zebra_route_string(i));
/*Separate EIGRP configuration from the rest of the config*/
vty_out(vty, "!\n");