aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2009-08-10 08:10:11 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2009-08-10 08:26:15 +0200
commitc423a12392b76e47739491cacca17c3535a8ae4b (patch)
tree62e07ea9871e1f809ff9ac393d8d2c3d0aa50f45 /openbsc
parent656b1298128e8c07b6d9baf13cddff1ab985d6fc (diff)
vty: Fix format string issue
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/src/vty/vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/vty/vty.c b/openbsc/src/vty/vty.c
index b403a7b2c..6e3134a98 100644
--- a/openbsc/src/vty/vty.c
+++ b/openbsc/src/vty/vty.c
@@ -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. */