pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40780?usp=email )
Change subject: NGAP_Functions.ttcn: Fix wrong offset of NGAP_ID_pair in uEContextReleaseCommand ......................................................................
NGAP_Functions.ttcn: Fix wrong offset of NGAP_ID_pair in uEContextReleaseCommand
Change-Id: I2302bebf75530f574a7fe2647b1eafcc4d5fd7df --- M library/NGAP_Functions.ttcn 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified osmith: Looks good to me, but someone else must approve fixeria: Looks good to me, approved
diff --git a/library/NGAP_Functions.ttcn b/library/NGAP_Functions.ttcn index f6c1389..910a71f 100644 --- a/library/NGAP_Functions.ttcn +++ b/library/NGAP_Functions.ttcn @@ -72,7 +72,7 @@ return im.value_.initialContextSetupRequest.protocolIEs[1].value_.RAN_UE_NGAP_ID; } case (id_UEContextRelease) { - return im.value_.uEContextReleaseCommand.protocolIEs[1].value_.uE_NGAP_IDs.uE_NGAP_ID_pair.rAN_UE_NGAP_ID; + return im.value_.uEContextReleaseCommand.protocolIEs[0].value_.uE_NGAP_IDs.uE_NGAP_ID_pair.rAN_UE_NGAP_ID; } /* TODO */ }