Merge pull request #1978 from qlyoung/fix-debug-all-vtysh-node

vtysh: fix node install of `[no] debug all`
This commit is contained in:
Russ White 2018-03-30 10:44:14 -04:00 committed by GitHub
commit d989640c0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3425,7 +3425,7 @@ void vtysh_init_vty(void)
/* debugging */ /* debugging */
install_element(VIEW_NODE, &vtysh_show_debugging_cmd); install_element(VIEW_NODE, &vtysh_show_debugging_cmd);
install_element(VIEW_NODE, &vtysh_show_debugging_hashtable_cmd); install_element(VIEW_NODE, &vtysh_show_debugging_hashtable_cmd);
install_element(VIEW_NODE, &vtysh_debug_all_cmd); install_element(ENABLE_NODE, &vtysh_debug_all_cmd);
install_element(CONFIG_NODE, &vtysh_debug_all_cmd); install_element(CONFIG_NODE, &vtysh_debug_all_cmd);
/* misc lib show commands */ /* misc lib show commands */