diff options
| author | Andrew Lunn <andrew@lunn.ch> | 2017-08-09 11:56:13 -0500 | 
|---|---|---|
| committer | Andrew Lunn <andrew@lunn.ch> | 2017-08-09 12:02:01 -0500 | 
| commit | af83cb12f9fd11a9208dd8ca954b364d9cf28717 (patch) | |
| tree | 90c6e88013e223d8bd7a149c483b806e18857f56 /eigrpd/eigrp_dump.c | |
| parent | 9cdce038c51d259e4416c3e2f15d70e76c5e176f (diff) | |
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 <andrew@lunn.ch>
Diffstat (limited to 'eigrpd/eigrp_dump.c')
| -rw-r--r-- | eigrpd/eigrp_dump.c | 1 | 
1 files changed, 1 insertions, 0 deletions
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);  }  | 
