aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/osmo-bsc
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2013-06-19 15:32:27 +0200
committerHarald Welte <laforge@gnumonks.org>2013-06-19 15:42:44 +0200
commit22ce59826a77bf02f10773d16463a3896874c72a (patch)
tree45fa80b88db67cadd1273d9f084c24d5f0ab6713 /openbsc/src/osmo-bsc
parentb0bf1da4c87f1ab3f9367bbeea615dc86d13131c (diff)
osmo-bsc VTY: fix saving of codec-list
the codec-list parser expects only spaces between the elements of the list, while the 'save' code is putting ", " between the elements
Diffstat (limited to 'openbsc/src/osmo-bsc')
-rw-r--r--openbsc/src/osmo-bsc/osmo_bsc_vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/osmo-bsc/osmo_bsc_vty.c b/openbsc/src/osmo-bsc/osmo_bsc_vty.c
index 254a56cc7..49ae665a6 100644
--- a/openbsc/src/osmo-bsc/osmo_bsc_vty.c
+++ b/openbsc/src/osmo-bsc/osmo_bsc_vty.c
@@ -120,7 +120,7 @@ static void write_msc(struct vty *vty, struct osmo_msc_data *msc)
vty_out(vty, " codec-list ");
for (i = 0; i < msc->audio_length; ++i) {
if (i != 0)
- vty_out(vty, ", ");
+ vty_out(vty, " ");
if (msc->audio_support[i]->hr)
vty_out(vty, "hr%.1u", msc->audio_support[i]->ver);