aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2020-08-13 12:20:45 +0000
committerNeels Hofmeyr <neels@hofmeyr.de>2020-08-13 12:31:51 +0000
commit6a67fa589ce6aed4e79de0530cb36bda050ec4d6 (patch)
tree2db1d110398447bd89f5a75d0611b839203ef0ce
parentf954e354649056f01dad64c5e8a7b6bbeb2426a3 (diff)
cosmetic: bscon: use GSM48_RR_CAUSE_NORMAL instead of 0
-rw-r--r--src/osmo-bsc/bsc_subscr_conn_fsm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osmo-bsc/bsc_subscr_conn_fsm.c b/src/osmo-bsc/bsc_subscr_conn_fsm.c
index ec8a4dfd9..e3976eb20 100644
--- a/src/osmo-bsc/bsc_subscr_conn_fsm.c
+++ b/src/osmo-bsc/bsc_subscr_conn_fsm.c
@@ -657,7 +657,7 @@ void gscon_change_primary_lchan(struct gsm_subscriber_connection *conn, struct g
osmo_fsm_inst_dispatch(conn->lchan->fi_rtp, LCHAN_RTP_EV_ESTABLISHED, 0);
if (old_lchan && (old_lchan != new_lchan))
- gscon_release_lchan(conn, old_lchan, false, false, 0);
+ gscon_release_lchan(conn, old_lchan, false, false, GSM48_RR_CAUSE_NORMAL);
}
void gscon_lchan_releasing(struct gsm_subscriber_connection *conn, struct gsm_lchan *lchan)