aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2022-03-03 02:23:44 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2022-03-09 00:01:06 +0100
commit49a4820fc65b5ce28d9e79d9771b3b9a19fd75e1 (patch)
tree19d45f5014499d565e33df81ce070c6c63892658
parent908f014f0967cf8a26260e4e35745835e780c603 (diff)
tweak error msg: s/inter-BSC MT/inter-BSC incoming
"inter-BSC MT" was the terminology of an early development stage of inter-BSC handover, code review requested "incoming" instead. This one was missed when applying code review. Same in a code comment. Related: SYS#5864 Change-Id: I1ca810542e89980ffda11876fd30626467e452d1
-rw-r--r--src/osmo-bsc/bsc_subscr_conn_fsm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bsc/bsc_subscr_conn_fsm.c b/src/osmo-bsc/bsc_subscr_conn_fsm.c
index 2af333816..f8c240f6d 100644
--- a/src/osmo-bsc/bsc_subscr_conn_fsm.c
+++ b/src/osmo-bsc/bsc_subscr_conn_fsm.c
@@ -332,7 +332,7 @@ static void handle_initial_user_data(struct osmo_fsm_inst *fi, struct msgb *msg)
switch (bssmap_type) {
case BSS_MAP_MSG_HANDOVER_RQST:
rate_ctr_inc(&conn->sccp.msc->msc_ctrs->ctr[MSC_CTR_BSSMAP_RX_DT1_HANDOVER_RQST]);
- /* Inter-BSC MT Handover Request, another BSS is handovering to us. */
+ /* Inter-BSC incoming Handover Request, another BSS is handovering to us. */
handover_start_inter_bsc_in(conn, msg);
return;
@@ -462,7 +462,7 @@ static void gscon_fsm_wait_initial_user_data(struct osmo_fsm_inst *fi, uint32_t
return;
}
LOG_HO(conn, LOGL_ERROR,
- "Conn is in state %s, the only accepted handover kind is inter-BSC MT\n",
+ "Conn is in state %s, the only accepted handover kind is inter-BSC incoming handover\n",
osmo_fsm_inst_state_name(conn->fi));
}
gscon_bssmap_clear(conn, GSM0808_CAUSE_EQUIPMENT_FAILURE);