From 2d52d10a52b40910427786c6f5cb314cce1ceccf Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 16 Jun 2012 17:01:29 +0800 Subject: add additional newline in vty welcome message --- src/vty/vty.c | 4 ++-- 1 file 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); -- cgit v1.2.3