gprs_ranap: add missing rc = 0

After processing the event, set the return code to success.
Thanks to manatails (redmine).

Change-Id: I73b3b3c3dd330bc953835737758854cf68539495
Fixes: #3969
This commit is contained in:
Alexander Couzens 2019-10-08 12:40:50 +02:00 committed by lynxis lazus
parent 4c7609a508
commit 743e687496
1 changed files with 1 additions and 0 deletions

View File

@ -152,6 +152,7 @@ int sgsn_ranap_iu_event(struct ranap_ue_conn_ctx *ctx, enum ranap_iu_event_type
gsm48_gmm_authorize(mm);
else
osmo_fsm_inst_dispatch(mm->gmm_att_req.fsm, E_IU_SECURITY_CMD_COMPLETE, NULL);
rc = 0;
break;
default:
LOGMMCTXP(LOGL_NOTICE, mm, "Unknown event received: %i\n", type);