diff options
author | Harald Welte <laforge@gnumonks.org> | 2012-06-16 17:01:29 +0800 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2012-06-16 17:01:29 +0800 |
commit | 2d52d10a52b40910427786c6f5cb314cce1ceccf (patch) | |
tree | f2ce790e88b286bf4b8a4f7e3a51580270e89157 /src/vty | |
parent | d85d0159a52f8a2d7515ec80418020c41c8ac8bd (diff) |
add additional newline in vty welcome message
Diffstat (limited to 'src/vty')
-rw-r--r-- | src/vty/vty.c | 4 |
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); |