diff options
author | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-05-25 09:20:29 +0200 |
---|---|---|
committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-05-25 09:20:53 +0200 |
commit | 0b7d911ec39a45140866cbdbf6537d7062e73124 (patch) | |
tree | 3735b67459b70fe03d8ef9c42fb78c3285d88fbe /vtysh | |
parent | Merge pull request #13566 from LabNConsulting/chopps/analyze-improvement (diff) | |
download | frr-0b7d911ec39a45140866cbdbf6537d7062e73124.tar.xz frr-0b7d911ec39a45140866cbdbf6537d7062e73124.zip |
vtysh: Fix typo in warning message for `-b -f ...`
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'vtysh')
-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 860d79d5f..20254fcd5 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, |