mirror of
https://github.com/open5gs/open5gs.git
synced 2026-04-28 03:19:31 +00:00
[MME] Avoid duplicate be32toh() in mme_gn_build_sgsn_context_request()
tlv_add_leaf() should already convert the byte order.
This commit is contained in:
parent
71e263c0a1
commit
dc2e167a8f
1 changed files with 1 additions and 1 deletions
|
|
@ -218,7 +218,7 @@ ogs_pkbuf_t *mme_gn_build_sgsn_context_request(
|
|||
req->temporary_logical_link_identifier.presence = 0;
|
||||
|
||||
req->packet_tmsi.presence = 1;
|
||||
req->packet_tmsi.u32 = be32toh(ptmsi);
|
||||
req->packet_tmsi.u32 = ptmsi;
|
||||
|
||||
if (ptmsi_sig) {
|
||||
req->p_tmsi_signature.presence = 1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue