From: Andrew Lunn Date: Wed, 9 Aug 2017 16:56:13 +0000 (-0500) Subject: eigrpd: Add missing install_element for debug eigrp transmit X-Git-Tag: frr-4.0-dev~436^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=af83cb12f9fd11a9208dd8ca954b364d9cf28717;p=mirror%2Ffrr.git 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 --- 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); }