summaryrefslogtreecommitdiffstats
path: root/zebra/zserv.c
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2017-06-21 20:10:29 +0200
committerQuentin Young <qlyoung@cumulusnetworks.com>2017-06-29 19:34:56 +0200
commite31b6333f4def619b6471d67bb901f7893a83193 (patch)
tree7d07cbd86fb8e6eeae363a3ea30e215de175ef0e /zebra/zserv.c
parent*: s/VTY_NEWLINE/VTYNL/g (diff)
downloadfrr-e31b6333f4def619b6471d67bb901f7893a83193.tar.xz
frr-e31b6333f4def619b6471d67bb901f7893a83193.zip
*: vty_outln (vty, "") --> vty_out (vty, VTYNL)
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'zebra/zserv.c')
-rw-r--r--zebra/zserv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/zebra/zserv.c b/zebra/zserv.c
index 7eead965b..72f738288 100644
--- a/zebra/zserv.c
+++ b/zebra/zserv.c
@@ -2674,7 +2674,7 @@ zebra_show_client_detail (struct vty *vty, struct zserv *client)
vty_out (vty, "Client: %s", zebra_route_string(client->proto));
if (client->instance)
vty_out (vty, " Instance: %d", client->instance);
- vty_outln (vty, "");
+ vty_out (vty, VTYNL);
vty_outln (vty, "------------------------ ");
vty_outln (vty, "FD: %d ", client->sock);
@@ -2705,7 +2705,7 @@ zebra_show_client_detail (struct vty *vty, struct zserv *client)
if (client->last_write_time)
vty_outln (vty, "Last Sent Cmd: %s ",
zserv_command_string(client->last_write_cmd));
- vty_outln (vty, "");
+ vty_out (vty, VTYNL);
vty_outln (vty, "Type Add Update Del ");
vty_outln (vty, "================================================== ");
@@ -2724,7 +2724,7 @@ zebra_show_client_detail (struct vty *vty, struct zserv *client)
vty_outln (vty, "Interface Up Notifications: %d",client->ifup_cnt);
vty_outln (vty, "Interface Down Notifications: %d",client->ifdown_cnt);
- vty_outln (vty, "");
+ vty_out (vty, VTYNL);
return;
}