summaryrefslogtreecommitdiffstats
path: root/eigrpd/eigrp_dump.c
diff options
context:
space:
mode:
authorAndrew Lunn <andrew@lunn.ch>2017-08-09 18:56:13 +0200
committerAndrew Lunn <andrew@lunn.ch>2017-08-09 19:02:01 +0200
commitaf83cb12f9fd11a9208dd8ca954b364d9cf28717 (patch)
tree90c6e88013e223d8bd7a149c483b806e18857f56 /eigrpd/eigrp_dump.c
parentMerge branch 'stable/3.0' (diff)
downloadfrr-af83cb12f9fd11a9208dd8ca954b364d9cf28717.tar.xz
frr-af83cb12f9fd11a9208dd8ca954b364d9cf28717.zip
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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/eigrpd/eigrp_dump.c b/eigrpd/eigrp_dump.c
index 15a8a71cf..db5e38d42 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);
}