From 7d9f6181f33462fdf241411b7963e259dc7ebb5a Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Tue, 2 Jan 2024 13:14:41 +0100 Subject: [PATCH] [MME] cosmetic: Fix typo in comment --- src/mme/mme-context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mme/mme-context.c b/src/mme/mme-context.c index 4115f2d2a..371a22902 100644 --- a/src/mme/mme-context.c +++ b/src/mme/mme-context.c @@ -3164,7 +3164,7 @@ void mme_ue_confirm_guti(mme_ue_t *mme_ue) ogs_assert(mme_m_tmsi_free(mme_ue->current.m_tmsi) == OGS_OK); } - /* Copying from Current to Next Guti */ + /* Copying from Next to Current Guti */ mme_ue->current.m_tmsi = mme_ue->next.m_tmsi; memcpy(&mme_ue->current.guti, &mme_ue->next.guti, sizeof(ogs_nas_eps_guti_t));