summaryrefslogtreecommitdiff
path: root/lib/command.c
diff options
context:
space:
mode:
authorIgor Ryzhov <iryzhov@nfware.com>2023-09-27 23:34:53 +0300
committerIgor Ryzhov <iryzhov@nfware.com>2023-09-27 23:34:53 +0300
commitb8ebb7fc62dc4e212e74189c8d53ee74f1b2d0e5 (patch)
tree6379f9ada6617a0e5b813c0b5a9730b50f44653c /lib/command.c
parentf289533d5d6535b4aad3624e7b912e766ac0b78a (diff)
vty: fix configure terminal argument descriptions
"terminal" and "file-lock" description are mixed up. Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'lib/command.c')
-rw-r--r--lib/command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/command.c b/lib/command.c
index affb551b45..b983ebb4e5 100644
--- a/lib/command.c
+++ b/lib/command.c
@@ -1331,8 +1331,8 @@ DEFUN (config_terminal,
config_terminal_cmd,
"configure [terminal [file-lock]]",
"Configuration from vty interface\n"
- "Configuration with locked datastores\n"
- "Configuration terminal\n")
+ "Configuration terminal\n"
+ "Configuration with locked datastores\n")
{
return vty_config_enter(vty, false, false, argc == 3);
}