From af83cb12f9fd11a9208dd8ca954b364d9cf28717 Mon Sep 17 00:00:00 2001 From: Andrew Lunn Date: Wed, 9 Aug 2017 11:56:13 -0500 Subject: [PATCH] eigrpd: Add missing install_element for debug eigrp transmit debug eigrp transmit command is added to the ENABLE_NODE list, but not CONFIG_NODE. As a result the command cannot be used in the configuration file. Add the missing call. Signed-off-by: Andrew Lunn --- eigrpd/eigrp_dump.c | 1 + 1 file changed, 1 insertion(+) diff --git a/eigrpd/eigrp_dump.c b/eigrpd/eigrp_dump.c index 15a8a71cf3..db5e38d422 100644 --- a/eigrpd/eigrp_dump.c +++ b/eigrpd/eigrp_dump.c @@ -616,5 +616,6 @@ void eigrp_debug_init() install_element(CONFIG_NODE, &show_debugging_eigrp_cmd); install_element(CONFIG_NODE, &debug_eigrp_packets_all_cmd); install_element(CONFIG_NODE, &no_debug_eigrp_packets_all_cmd); + install_element(CONFIG_NODE, &debug_eigrp_transmit_cmd); install_element(CONFIG_NODE, &no_debug_eigrp_transmit_cmd); } -- 2.39.5