summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/vty/command.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vty/command.c b/src/vty/command.c
index 55284eed..71f6a71e 100644
--- a/src/vty/command.c
+++ b/src/vty/command.c
@@ -68,21 +68,25 @@ struct host host;
struct cmd_node auth_node = {
AUTH_NODE,
"Password: ",
+ .name = "auth",
};
struct cmd_node view_node = {
VIEW_NODE,
"%s> ",
+ .name = "view",
};
struct cmd_node auth_enable_node = {
AUTH_ENABLE_NODE,
"Password: ",
+ .name = "auth-enable",
};
struct cmd_node enable_node = {
ENABLE_NODE,
"%s# ",
+ .name = "enable",
};
struct cmd_node config_node = {