aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2023-12-14 18:11:31 +0100
committerpespin <pespin@sysmocom.de>2023-12-15 13:18:09 +0000
commit9ad1980774e266197a3b8f01f3d300e324c3429b (patch)
treeba730a564bba12017f7995f46db2d41228399e79
parent4976217518f3efbb8552db71db65f680403ec684 (diff)
LTE_CryptoFunctions.ttcn: Log NAS_UE_State on failure
-rw-r--r--mme/LTE_CryptoFunctions.ttcn2
1 files changed, 1 insertions, 1 deletions
diff --git a/mme/LTE_CryptoFunctions.ttcn b/mme/LTE_CryptoFunctions.ttcn
index dee0f223..99235418 100644
--- a/mme/LTE_CryptoFunctions.ttcn
+++ b/mme/LTE_CryptoFunctions.ttcn
@@ -145,7 +145,7 @@ private function f_nas_check_ip(inout NAS_UE_State nus,
f_rx_is_downlink(nus), data_with_seq);
if (exp_mac != secp_nas.messageAuthenticationCode) {
setverdict(fail, "Received NAS MAC ", secp_nas.messageAuthenticationCode,
- " doesn't match expected MAC ", exp_mac, ": ", secp_nas);
+ " doesn't match expected MAC ", exp_mac, ": ", secp_nas, " | nus: ", nus);
return false;
}
return true;