diff options
| -rw-r--r-- | src/vty/vty.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/vty/vty.c b/src/vty/vty.c index e529ee70..eda3699c 100644 --- a/src/vty/vty.c +++ b/src/vty/vty.c @@ -348,7 +348,7 @@ void vty_hello(struct vty *vty)  		app_name, VTY_NEWLINE, VTY_NEWLINE);  	if (host.app_info->copyright) -		vty_out(vty, host.app_info->copyright); +		vty_out(vty, "%s", host.app_info->copyright);  	if (host.motdfile) {  		FILE *f; | 
