From 8f58b55e149389343d79680df2caef6b3560fdd6 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Thu, 4 Jan 2024 14:16:02 +0100 Subject: [PATCH] [MME] Fix incorrect function name printed in error line --- src/mme/s1ap-path.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mme/s1ap-path.c b/src/mme/s1ap-path.c index 6ee5dcc61..a46f4b0c5 100644 --- a/src/mme/s1ap-path.c +++ b/src/mme/s1ap-path.c @@ -323,7 +323,7 @@ int s1ap_send_enb_configuration_update_ack(mme_enb_t *enb) s1ap_buffer = s1ap_build_enb_configuration_update_ack(); if (!s1ap_buffer) { - ogs_error("s1ap_build_setup_rsp() failed"); + ogs_error("s1ap_build_enb_configuration_update_ack() failed"); return OGS_ERROR; } @@ -349,7 +349,7 @@ int s1ap_send_enb_configuration_update_failure( s1ap_buffer = s1ap_build_enb_configuration_update_failure( group, cause, S1AP_TimeToWait_v10s); if (!s1ap_buffer) { - ogs_error("s1ap_build_setup_failure() failed"); + ogs_error("s1ap_build_enb_configuration_update_failure() failed"); return OGS_ERROR; }