summaryrefslogtreecommitdiffstats
path: root/vtysh
diff options
context:
space:
mode:
authorRuss White <russ@riw.us>2018-03-30 16:44:14 +0200
committerGitHub <noreply@github.com>2018-03-30 16:44:14 +0200
commitd989640c0a31953f8f7402998a007d62a1eb5672 (patch)
treecc7480357685868afedaca2863e42e91cdc40b54 /vtysh
parentMerge pull request #1980 from donaldsharp/tools_frr (diff)
parentvtysh: fix node install of `[no] debug all` (diff)
downloadfrr-d989640c0a31953f8f7402998a007d62a1eb5672.tar.xz
frr-d989640c0a31953f8f7402998a007d62a1eb5672.zip
Merge pull request #1978 from qlyoung/fix-debug-all-vtysh-node
vtysh: fix node install of `[no] debug all`
Diffstat (limited to 'vtysh')
-rw-r--r--vtysh/vtysh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c
index 1e114d1ce..8c0d0f862 100644
--- a/vtysh/vtysh.c
+++ b/vtysh/vtysh.c
@@ -3425,7 +3425,7 @@ void vtysh_init_vty(void)
/* debugging */
install_element(VIEW_NODE, &vtysh_show_debugging_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);
/* misc lib show commands */