From 735e62a0f28b375b184e1bfeb97f7cbe5673a497 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 11 Mar 2016 14:27:12 -0500 Subject: [PATCH] lib: Consolidate VIEW_NODE to be ENABLE_NODE as well If you are in VIEW_NODE, the command should exist in ENABLE_NODE as well. This is being done to reduce chances of code being added to one but not the other NODE. Signed-off-by: Donald Sharp --- lib/command.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/command.c b/lib/command.c index 5ebab1450..f72733ab2 100644 --- a/lib/command.c +++ b/lib/command.c @@ -718,6 +718,9 @@ install_element (enum node_type ntype, struct cmd_element *cmd) vector_set (cnode->cmd_vector, cmd); if (cmd->tokens == NULL) cmd->tokens = cmd_parse_format(cmd->string, cmd->doc); + + if (ntype == VIEW_NODE) + install_element (ENABLE_NODE, cmd); } static const unsigned char itoa64[] =