summaryrefslogtreecommitdiffstats
path: root/vtysh/vtysh.c
diff options
context:
space:
mode:
authorIgor Ryzhov <iryzhov@nfware.com>2023-09-27 22:34:53 +0200
committerIgor Ryzhov <iryzhov@nfware.com>2023-09-27 22:34:53 +0200
commitb8ebb7fc62dc4e212e74189c8d53ee74f1b2d0e5 (patch)
tree6379f9ada6617a0e5b813c0b5a9730b50f44653c /vtysh/vtysh.c
parentMerge pull request #14447 from marcos-ng/master (diff)
downloadfrr-b8ebb7fc62dc4e212e74189c8d53ee74f1b2d0e5.tar.xz
frr-b8ebb7fc62dc4e212e74189c8d53ee74f1b2d0e5.zip
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 '')
-rw-r--r--vtysh/vtysh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c
index 050807ccd..2475ef0c8 100644
--- a/vtysh/vtysh.c
+++ b/vtysh/vtysh.c
@@ -2381,8 +2381,8 @@ DEFUNSH(VTYSH_REALLYALL, vtysh_disable, vtysh_disable_cmd, "disable",
DEFUNSH(VTYSH_REALLYALL, vtysh_config_terminal, vtysh_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")
{
vty->node = CONFIG_NODE;
return CMD_SUCCESS;