aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2012-06-16 17:01:29 +0800
committerHarald Welte <laforge@gnumonks.org>2012-06-16 17:01:29 +0800
commit2d52d10a52b40910427786c6f5cb314cce1ceccf (patch)
treef2ce790e88b286bf4b8a4f7e3a51580270e89157
parentd85d0159a52f8a2d7515ec80418020c41c8ac8bd (diff)
add additional newline in vty welcome message0.4.3
-rw-r--r--src/vty/vty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vty/vty.c b/src/vty/vty.c
index 86131ecc..28c22660 100644
--- a/src/vty/vty.c
+++ b/src/vty/vty.c
@@ -344,8 +344,8 @@ void vty_hello(struct vty *vty)
if (host.app_info->name)
app_name = host.app_info->name;
- vty_out(vty, "Welcome to the %s control interface%s",
- app_name, VTY_NEWLINE);
+ vty_out(vty, "Welcome to the %s control interface%s%s",
+ app_name, VTY_NEWLINE, VTY_NEWLINE);
if (host.app_info->copyright)
vty_out(vty, host.app_info->copyright);