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 /ripngd | |
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 'ripngd')
-rw-r--r-- | ripngd/ripngd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ripngd/ripngd.c b/ripngd/ripngd.c index 78bf350c9..bfec173ef 100644 --- a/ripngd/ripngd.c +++ b/ripngd/ripngd.c @@ -2026,7 +2026,7 @@ DEFUN (show_ipv6_ripng, vty_out (vty, "R(a) %s/%d ", inet6_ntoa (p->prefix), p->prefixlen); #endif /* DEBUG */ - vty_outln (vty, ""); + vty_out (vty, VTYNL); vty_out (vty, "%*s", 18, " "); vty_out (vty, "%*s", 28, " "); @@ -2051,7 +2051,7 @@ DEFUN (show_ipv6_ripng, ripng_route_subtype_print(rinfo), inet6_ntoa (p->prefix), p->prefixlen); #endif /* DEBUG */ - vty_outln (vty, ""); + vty_out (vty, VTYNL); vty_out (vty, "%*s", 18, " "); len = vty_out (vty, "%s", inet6_ntoa (rinfo->nexthop)); @@ -2089,7 +2089,7 @@ DEFUN (show_ipv6_ripng, ripng_vty_out_uptime (vty, rinfo); } - vty_outln (vty, ""); + vty_out (vty, VTYNL); } } @@ -2128,7 +2128,7 @@ DEFUN (show_ipv6_ripng_status, /* Redistribute information. */ vty_out (vty, " Redistributing:"); ripng_redistribute_write (vty, 0); - vty_outln (vty, ""); + vty_out (vty, VTYNL); vty_out (vty, " Default version control: send version %d,", ripng->version); vty_outln (vty, " receive version %d ",ripng->version); |