Fixed TMSI packing length (was giving trouble with Xperia).

This commit is contained in:
Pedro Alvarez 2018-12-07 10:28:05 +00:00
parent bba2987eb0
commit e88e1bb4d2
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ LIBLTE_ERROR_ENUM liblte_mme_pack_mobile_id_ie(LIBLTE_MME_MOBILE_ID_STRUCT *mob
odd = false;
}else if(LIBLTE_MME_MOBILE_ID_TYPE_TMSI == mobile_id->type_of_id){
id32 = mobile_id->tmsi;
length = 4;
length = 5;
odd = false;
}
}else{