]> git.proxmox.com Git - mirror_frr.git/commitdiff
eigrpd: Add missing install_element for debug eigrp transmit
authorAndrew Lunn <andrew@lunn.ch>
Wed, 9 Aug 2017 16:56:13 +0000 (11:56 -0500)
committerAndrew Lunn <andrew@lunn.ch>
Wed, 9 Aug 2017 17:02:01 +0000 (12:02 -0500)
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 <andrew@lunn.ch>
eigrpd/eigrp_dump.c

index 15a8a71cf3b3db744d1a7873c2a8bfe8af39acf0..db5e38d422cdebb6ecab1fd43f579beb7caae91e 100644 (file)
@@ -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);
 }