diff options
author | anlan_cs <vic.lan@pica8.com> | 2022-02-27 02:38:29 +0100 |
---|---|---|
committer | anlan_cs <vic.lan@pica8.com> | 2022-02-27 03:59:19 +0100 |
commit | 4d4c404bf6f82ec7df67baff072e4f237c47180e (patch) | |
tree | 08fea36c37bb809f3fed67088c5c521120281140 /ospfd | |
parent | Merge pull request #10665 from opensourcerouting/pim6-fix-warning (diff) | |
download | frr-4d4c404bf6f82ec7df67baff072e4f237c47180e.tar.xz frr-4d4c404bf6f82ec7df67baff072e4f237c47180e.zip |
*: Add necessary new line for output of vty_out()
Signed-off-by: anlan_cs <vic.lan@pica8.com>
Diffstat (limited to 'ospfd')
-rw-r--r-- | ospfd/ospf_vty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index 0b7c3c683..780521bfe 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -9705,7 +9705,7 @@ DEFUN (ospf_max_metric_router_lsa_startup, unsigned int seconds; if (argc < 4) { - vty_out(vty, "%% Must supply stub-router period"); + vty_out(vty, "%% Must supply stub-router period\n"); return CMD_WARNING_CONFIG_FAILED; } @@ -9761,7 +9761,7 @@ DEFUN (ospf_max_metric_router_lsa_shutdown, unsigned int seconds; if (argc < 4) { - vty_out(vty, "%% Must supply stub-router shutdown period"); + vty_out(vty, "%% Must supply stub-router shutdown period\n"); return CMD_WARNING_CONFIG_FAILED; } |