diff options
author | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-09-28 09:03:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-28 09:03:06 +0200 |
commit | 0af454157655fa27a33d79ed60b4f6383cc283a9 (patch) | |
tree | 8fa5594d5abd58065d82de4382ca19292efc0c9a /lib/command.c | |
parent | Merge pull request #14222 from opensourcerouting/doc/debian12 (diff) | |
parent | vtysh: fix entering configuration node in file-lock mode (diff) | |
download | frr-0af454157655fa27a33d79ed60b4f6383cc283a9.tar.xz frr-0af454157655fa27a33d79ed60b4f6383cc283a9.zip |
Merge pull request #14498 from idryzhov/fix-conf-t-file-lock
Fixes for `file-lock` mode of configuration node
Diffstat (limited to 'lib/command.c')
-rw-r--r-- | lib/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/command.c b/lib/command.c index 1977dc4fa..86da488fd 100644 --- a/lib/command.c +++ b/lib/command.c @@ -1316,8 +1316,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); } |