From 22ce59826a77bf02f10773d16463a3896874c72a Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Wed, 19 Jun 2013 15:32:27 +0200 Subject: 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 --- openbsc/src/osmo-bsc/osmo_bsc_vty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openbsc/src') 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); -- cgit v1.2.3