Commit 3f4f6bab authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Fix issue to work with 5G-GUTI (Identity Request/Response)

parent 59cd46c9
......@@ -558,7 +558,7 @@ void amf_n1::identity_response_handle(
if (ir->ie_mobility_id) {
nas::SUCI_imsi_t imsi;
ir->ie_mobility_id->getSuciWithSupiImsi(imsi);
supi = imsi.mcc + imsi.mnc + imsi.msin;
supi = "imsi-" + imsi.mcc + imsi.mnc + imsi.msin;
Logger::amf_n1().debug("identity response : suci (%s)", supi.c_str());
}
......
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