diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-06-21 20:10:29 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-06-29 19:34:56 +0200 |
commit | e31b6333f4def619b6471d67bb901f7893a83193 (patch) | |
tree | 7d07cbd86fb8e6eeae363a3ea30e215de175ef0e /vtysh | |
parent | *: s/VTY_NEWLINE/VTYNL/g (diff) | |
download | frr-e31b6333f4def619b6471d67bb901f7893a83193.tar.xz frr-e31b6333f4def619b6471d67bb901f7893a83193.zip |
*: vty_outln (vty, "") --> vty_out (vty, VTYNL)
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'vtysh')
-rw-r--r-- | vtysh/vtysh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index 2b5cf37ad..d10861a66 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -814,7 +814,7 @@ vtysh_rl_describe (void) fprintf (stdout, " %s", item); XFREE (MTYPE_COMPLETION, item); } - vty_outln (vty, ""); + vty_out (vty, VTYNL); } vector_free (varcomps); } @@ -2806,7 +2806,7 @@ DEFUN (vtysh_show_daemons, for (i = 0; i < array_size(vtysh_client); i++) if ( vtysh_client[i].fd >= 0 ) vty_out(vty, " %s", vtysh_client[i].name); - vty_outln (vty, ""); + vty_out (vty, VTYNL); return CMD_SUCCESS; } |