sgsn: fix unused param in f_routing_area_update()

Change-Id: I582b2836eba3188cfd4c640b1febbd25c50001e0
Related: SYS#6603, OS#6294
This commit is contained in:
Vadim Yanitskiy 2024-04-06 05:35:39 +07:00 committed by fixeria
parent fdde16846b
commit 1ee1edd20e
1 changed files with 2 additions and 2 deletions

View File

@ -2630,7 +2630,7 @@ testcase TC_attach_check_complete_resend() runs on test_CT {
f_cleanup();
}
friend function f_routing_area_update(RoutingAreaIdentificationV ra, integer ran_index := 0) runs on BSSGP_ConnHdlr {
friend function f_routing_area_update(RoutingAreaIdentificationV old_ra, integer ran_index := 0) runs on BSSGP_ConnHdlr {
var PDU_L3_SGSN_MS l3_mt;
var PDU_DTAP_PS_MT mt;
var template (omit) OCT4 p_tmsi := omit;
@ -2639,7 +2639,7 @@ friend function f_routing_area_update(RoutingAreaIdentificationV ra, integer ran
p_tmsi := g_pars.p_tmsi;
}
/* then send RAU */
f_send_l3(ts_GMM_RAU_REQ(f_mi_get_lv(), GPRS_UPD_T_RA, g_pars.ra, false, omit, omit, p_tmsi), ran_index);
f_send_l3(ts_GMM_RAU_REQ(f_mi_get_lv(), GPRS_UPD_T_RA, old_ra, false, omit, omit, p_tmsi), ran_index);
alt {
[is_gb(ran_index)] BSSGP[ran_index].receive(tr_GMM_RAU_ACCEPT) -> value l3_mt {
f_process_rau_accept(l3_mt.msgs.gprs_mm.routingAreaUpdateAccept, ran_index);