summaryrefslogtreecommitdiff
path: root/pimd/pim_zebra.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2017-07-13 17:49:13 +0200
committerDavid Lamparter <equinox@opensourcerouting.org>2017-07-13 20:29:22 +0200
commit5c7571d43f57317b0827ac82fbebc4cdc6865be0 (patch)
tree2bc63ccbd805abc9689e9f3345e34871558d5c26 /pimd/pim_zebra.c
parent83eba583d7be5afaf2eba35ce4d391f645af4bfa (diff)
*: ditch vty_outln(), part 1 of 2
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pimd/pim_zebra.c')
-rw-r--r--pimd/pim_zebra.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim_zebra.c b/pimd/pim_zebra.c
index 908c0a1f8b..b4fff97120 100644
--- a/pimd/pim_zebra.c
+++ b/pimd/pim_zebra.c
@@ -1151,11 +1151,11 @@ pim_zebra_zclient_update (struct vty *vty)
vty_out(vty, "Zclient update socket: ");
if (zclient) {
- vty_outln (vty, "%d failures=%d", zclient->sock,
+ vty_out (vty, "%d failures=%d\n", zclient->sock,
zclient->fail);
}
else {
- vty_outln (vty, "<null zclient>");
+ vty_out (vty, "<null zclient>\n");
}
}