summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/src/mobile/vty_interface.c
diff options
context:
space:
mode:
authorSteve Markgraf <steve@steve-m.de>2011-08-11 13:45:31 +0200
committerSteve Markgraf <steve@steve-m.de>2011-08-11 13:45:31 +0200
commitfda9135874ff5b19ab1b61be05702a79d9b00c38 (patch)
treea09a242ca171a50c299b218365deb975672544e6 /src/host/layer23/src/mobile/vty_interface.c
parent210de12ec4ffa9a3ffc8a1cb81f60c30a834dee1 (diff)
mobile/vty: Add missing 's' for 'skip-max-per-band' configuration parameter
Thanks to Sylvain for pointing this out. Signed-off-by: Steve Markgraf <steve@steve-m.de>
Diffstat (limited to 'src/host/layer23/src/mobile/vty_interface.c')
-rw-r--r--src/host/layer23/src/mobile/vty_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/layer23/src/mobile/vty_interface.c b/src/host/layer23/src/mobile/vty_interface.c
index 5fe34411..c0a7ceff 100644
--- a/src/host/layer23/src/mobile/vty_interface.c
+++ b/src/host/layer23/src/mobile/vty_interface.c
@@ -1335,7 +1335,7 @@ static void config_write_ms(struct vty *vty, struct osmocom_ms *ms)
if (!hide_default || sup->dsc_max != set->dsc_max)
vty_out(vty, " dsc-max %d%s", set->dsc_max, VTY_NEWLINE);
if (!hide_default || set->skip_max_per_band)
- vty_out(vty, " %skip-max-per-band%s",
+ vty_out(vty, " %sskip-max-per-band%s",
(set->skip_max_per_band) ? "" : "no ", VTY_NEWLINE);
vty_out(vty, " exit%s", VTY_NEWLINE);
vty_out(vty, " test-sim%s", VTY_NEWLINE);