summaryrefslogtreecommitdiffstats
path: root/vtysh
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2017-07-13 19:04:25 +0200
committerDavid Lamparter <equinox@opensourcerouting.org>2017-07-14 10:20:02 +0200
commit6d3c2ed4edb863d108239132b3e01daf07024f65 (patch)
treecca9737fab2548ec43a31def39cfab5a8affc83f /vtysh
parentospf6d: VNL -> VTYNL (diff)
downloadfrr-6d3c2ed4edb863d108239132b3e01daf07024f65.tar.xz
frr-6d3c2ed4edb863d108239132b3e01daf07024f65.zip
*: remove VTYNL, part 1 of 6
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'vtysh')
-rw-r--r--vtysh/vtysh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c
index 794708683..02606b88a 100644
--- a/vtysh/vtysh.c
+++ b/vtysh/vtysh.c
@@ -815,7 +815,7 @@ vtysh_rl_describe (void)
fprintf (stdout, " %s", item);
XFREE (MTYPE_COMPLETION, item);
}
- vty_out (vty, VTYNL);
+ vty_out (vty, "\n");
}
vector_free (varcomps);
}
@@ -2832,7 +2832,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_out (vty, VTYNL);
+ vty_out (vty, "\n");
return CMD_SUCCESS;
}