From 0641fee20b0422bec5837eecde0cf32a9ae3472b Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Tue, 5 Dec 2017 22:15:57 +0100 Subject: [PATCH] nas: fix IMSI print --- srsue/src/upper/nas.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/srsue/src/upper/nas.cc b/srsue/src/upper/nas.cc index 5927c3c64..801cab581 100644 --- a/srsue/src/upper/nas.cc +++ b/srsue/src/upper/nas.cc @@ -697,7 +697,6 @@ void nas::send_attach_request() { attach_req.additional_guti_present = false; attach_req.last_visited_registered_tai_present = false; attach_req.drx_param_present = false; - attach_req.ms_network_cap_present = false; attach_req.old_lai_present = false; attach_req.tmsi_status_present = false; attach_req.ms_cm2_present = false; @@ -739,7 +738,7 @@ void nas::send_attach_request() { } else { attach_req.eps_mobile_id.type_of_id = LIBLTE_MME_EPS_MOBILE_ID_TYPE_IMSI; usim->get_imsi_vec(attach_req.eps_mobile_id.imsi, 15); - nas_log->info("Requesting IMSI attach. imsi: %s\n", usim->get_imsi_str()); + nas_log->info("Requesting IMSI attach (IMSI=%s)\n", usim->get_imsi_str().c_str()); liblte_mme_pack_attach_request_msg(&attach_req, (LIBLTE_BYTE_MSG_STRUCT *) msg); }