Commit dbfff6c8 authored by Cedric Roux's avatar Cedric Roux

- Fix issue with NAS when Attach complete is received at UE side

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4292 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent cf5c4633
......@@ -125,6 +125,15 @@ int EmmDeregisteredNormalService(const emm_reg_t* evt)
rc = emm_proc_lowerlayer_release();
break;
case _EMMREG_ATTACH_CNF:
/*
* Attach procedure successful and default EPS bearer
* context activated;
* enter state EMM-REGISTERED.
*/
rc = emm_fsm_set_status(EMM_REGISTERED);
break;
default:
LOG_TRACE(ERROR, "EMM-FSM - Primitive is not valid (%d)",
evt->primitive);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment