From 706213ac4bc9bee19ecd5d65c500a8996ea3ed45 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 25 Dec 2015 10:33:09 +0100 Subject: [PATCH] Fix typo / spelling mistakes --- src/hnbgw_hnbap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hnbgw_hnbap.c b/src/hnbgw_hnbap.c index ed10df72..87dc3439 100644 --- a/src/hnbgw_hnbap.c +++ b/src/hnbgw_hnbap.c @@ -166,7 +166,7 @@ static int hnbgw_rx_ue_register_req(struct hnb_context *ctx, ANY_t *in) return -1; } - DEBUGP(DHNBAP, "UE-REGSITER-REQ ID_type=%d imsi=%s cause=%ld\n", + DEBUGP(DHNBAP, "UE-REGISTER-REQ ID_type=%d imsi=%s cause=%ld\n", ies.uE_Identity.present, imsi, ies.registration_Cause); ue = ue_context_by_imsi(ctx->gw, imsi); @@ -190,7 +190,7 @@ static int hnbgw_rx_ue_deregister(struct hnb_context *ctx, ANY_t *in) ctxid = asn1bitstr_to_u24(&ies.context_ID); - DEBUGP(DHNBAP, "UE-DE-REGSITER context=%ld cause=%s\n", + DEBUGP(DHNBAP, "UE-DE-REGISTER context=%ld cause=%s\n", ctxid, hnbap_cause_str(&ies.cause)); ue = ue_context_by_id(ctx->gw, ctxid);