summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSid Khot <sidkhot@cumulusnetworks.com>2016-07-26 10:23:46 -0700
committerSid Khot <sidkhot@cumulusnetworks.com>2016-07-26 10:23:46 -0700
commit87e8267a836a9d5ebb33ec754c7478619a84cbd9 (patch)
tree53d6d42dc05b633333ae14fe56531d5929d760b2
parent4f2125df1ff3063af7de403e8165f38aef9c59ef (diff)
bgpd: Fix for vtysh -m does not mark "end" of router bgp
There was an exit added at the end of the BGP commands after we pulled the code from upstream. This was causing the reload scripts to fail. Removed this exit. Ticket: CM-11464 CM-11924 Reviewed By: CCR-4995 Testing Done: Manual <DETAILED DESCRIPTION (REPLACE)>
-rw-r--r--bgpd/bgpd.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/bgpd/bgpd.c b/bgpd/bgpd.c
index a06e95e244..49fc9e22a2 100644
--- a/bgpd/bgpd.c
+++ b/bgpd/bgpd.c
@@ -7268,8 +7268,6 @@ bgp_config_write (struct vty *vty)
/* ENCAPv6 configuration. */
write += bgp_config_write_family (vty, bgp, AFI_IP6, SAFI_ENCAP);
- vty_out (vty, " exit%s", VTY_NEWLINE);
-
write++;
}
return write;