vty: Fix format string issue

This commit is contained in:
Holger Hans Peter Freyther 2009-08-10 08:10:11 +02:00
parent 656b129812
commit c423a12392
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ void vty_hello(struct vty *vty)
} else
vty_out(vty, "MOTD file not found%s", VTY_NEWLINE);
} else if (host.motd)
vty_out(vty, host.motd);
vty_out(vty, "%s", host.motd);
}
/* Put out prompt and wait input from user. */