add additional newline in vty welcome message

This commit is contained in:
Harald Welte 2012-06-16 17:01:29 +08:00
parent d85d0159a5
commit 2d52d10a52
1 changed files with 2 additions and 2 deletions

View File

@ -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);