aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2018-03-22 05:28:16 +0100
committerNeels Hofmeyr <neels@hofmeyr.de>2018-03-22 05:33:22 +0100
commit48213a275061371b69b0aa018a6c8561330f4460 (patch)
tree8cc1a7a88c4cbbfdce8c7adbad157749f092c3c5
parentda5b09a08e2b480a02ce6ffb6878959b7db068d6 (diff)
fixup: apply mnc3 change also in ipaccess/network_listen.c
Preceding commit I38ac98a4d25159cfd4f686efbfbaf8f00625a6d8 changed the ipac_bcch_info.cgi type to osmo_cell_global_id, but did not carry out corresponding changes in ipaccess/network_listen.c. The reason this was not caught is that recent commit I68286d26e2014048b054f39ef29c35fef420cc97 adding the new gscon FSM actually disables ipaccess-config in the build. Fix the build, given that ipaccess-config were re-enabled. Change-Id: I15cd58e8ba0563ce4e42a61e79d01394b61593dd
-rw-r--r--src/ipaccess/network_listen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ipaccess/network_listen.c b/src/ipaccess/network_listen.c
index dd6cb4b71..bbaf79810 100644
--- a/src/ipaccess/network_listen.c
+++ b/src/ipaccess/network_listen.c
@@ -185,10 +185,10 @@ static int test_rep(void *_msg)
DEBUGP(DNM, "BCCH Info parsing failed\n");
break;
}
- DEBUGP(DNM, "==> ARFCN %u, RxLev %2u, RxQual %2u: %3d-%d, LAC %d CI %d BSIC %u\n",
+ DEBUGP(DNM, "==> ARFCN %u, RxLev %2u, RxQual %2u: %s, LAC %d CI %d BSIC %u\n",
binfo.arfcn, binfo.rx_lev, binfo.rx_qual,
- binfo.cgi.mcc, binfo.cgi.mnc,
- binfo.cgi.lac, binfo.cgi.ci, binfo.bsic);
+ osmo_plmn_name(&binfo.cgi.lai.plmn),
+ binfo.cgi.lai.lac, binfo.cgi.cell_identity, binfo.bsic);
if (binfo.arfcn != last_arfcn) {
/* report is on a new arfcn, need to clear channel list */