summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Markgraf2011-08-11 13:45:31 +0200
committerSteve Markgraf2011-08-11 13:45:31 +0200
commitfda9135874ff5b19ab1b61be05702a79d9b00c38 (patch)
treea09a242ca171a50c299b218365deb975672544e6
parentFix of wong Classmark 2 when doing CM Service Request. (diff)
downloadosmocom-fda9135874ff5b19ab1b61be05702a79d9b00c38.tar.gz
osmocom-fda9135874ff5b19ab1b61be05702a79d9b00c38.tar.xz
osmocom-fda9135874ff5b19ab1b61be05702a79d9b00c38.zip
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>
-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 5fe3441..c0a7cef 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);