diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2023-05-25 17:09:41 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-25 17:09:41 +0300 |
| commit | b570e9ce2840a3f9a39a1dc31999bf63bfc3879c (patch) | |
| tree | e2bbdb7bbeca9e1ae7ac6d6776eb8c77e8611a6b | |
| parent | 254feba0a504f10a372c11567106d85f7102b537 (diff) | |
| parent | 0b7d911ec39a45140866cbdbf6537d7062e73124 (diff) | |
Merge pull request #13598 from opensourcerouting/fix/typo_vtysh
vtysh: Fix typo in warning message for `-b -f ...`
| -rw-r--r-- | vtysh/vtysh_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vtysh/vtysh_main.c b/vtysh/vtysh_main.c index 860d79d5f9..20254fcd53 100644 --- a/vtysh/vtysh_main.c +++ b/vtysh/vtysh_main.c @@ -463,7 +463,7 @@ int main(int argc, char **argv, char **env) } if (inputfile && (writeconfig || boot_flag)) { fprintf(stderr, - "WARNING: Combinining the -f option with -b or -w is NOT SUPPORTED since its\nresults are inconsistent!\n"); + "WARNING: Combining the -f option with -b or -w is NOT SUPPORTED since its\nresults are inconsistent!\n"); } snprintf(vtysh_config, sizeof(vtysh_config), "%s%s%s", sysconfdir, |
