summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2017-01-25 08:20:06 -0500
committerDonald Sharp <sharpd@cumulusnetworks.com>2017-01-25 08:20:06 -0500
commitc74e21947484b45ef5a484b6570ac90b4ffcd02c (patch)
treeb8de3c19bfee9bc5df6ddb18833d27db1871d57c
parentd2ce19c9b5e2a707dd5620dc6bb3cb8562a06261 (diff)
pimd: Fix double add of command
We were adding the 'ip msdp ...' command to the parser 2x. Some new code added to the parser apparently catches this for us now. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
-rw-r--r--pimd/pim_cmd.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/pimd/pim_cmd.c b/pimd/pim_cmd.c
index 85baa4eafe..cfccdeba98 100644
--- a/pimd/pim_cmd.c
+++ b/pimd/pim_cmd.c
@@ -6134,8 +6134,6 @@ void pim_cmd_init()
install_element (CONFIG_NODE, &debug_msdp_packets_cmd);
install_element (CONFIG_NODE, &no_debug_msdp_packets_cmd);
install_element (CONFIG_NODE, &undebug_msdp_packets_cmd);
- install_element (CONFIG_NODE, &ip_msdp_peer_cmd);
- install_element (CONFIG_NODE, &no_ip_msdp_peer_cmd);
install_element (CONFIG_NODE, &ip_msdp_mesh_group_member_cmd);
install_element (CONFIG_NODE, &no_ip_msdp_mesh_group_member_cmd);
install_element (CONFIG_NODE, &ip_msdp_mesh_group_source_cmd);