aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2017-07-03 13:25:15 +0200
committerPhilipp Maier <pmaier@sysmocom.de>2017-07-03 13:25:15 +0200
commit59f0ff6bf739e79288737e922634dc0b466a3702 (patch)
tree391792855723da261a5cabfced05387476394ccf /openbsc
parentedc140f90ed28a779d392daecbd120a46af3b754 (diff)
osmo-bsc: fix sccp name string
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/src/osmo-bsc/osmo_bsc_sigtran.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/osmo-bsc/osmo_bsc_sigtran.c b/openbsc/src/osmo-bsc/osmo_bsc_sigtran.c
index ddf0f4918..bb31f0e65 100644
--- a/openbsc/src/osmo-bsc/osmo_bsc_sigtran.c
+++ b/openbsc/src/osmo-bsc/osmo_bsc_sigtran.c
@@ -435,7 +435,7 @@ int osmo_bsc_sigtran_init(struct llist_head *mscs)
conn_id_counter = 0;
llist_for_each_entry(msc, msc_list, entry) {
- snprintf(msc_name, sizeof(msc_name), "as-msc-%u", msc->nr);
+ snprintf(msc_name, sizeof(msc_name), "msc-%u", msc->nr);
LOGP(DMSC, LOGL_NOTICE, "Initializing SCCP connection to MSC %s (%s)\n",
osmo_sccp_addr_dump(&msc->a.msc_addr), msc_name);