From fe18d8fd895c21fdceb9d0e3d55bbecc18fc5447 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 22 Feb 2009 21:14:24 +0000 Subject: [PATCH] PAGING RESPONSE could contain non-TMSI mobile identity such as IMSI --- src/gsm_04_08.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/gsm_04_08.c b/src/gsm_04_08.c index 01f103b83..9fdc10406 100644 --- a/src/gsm_04_08.c +++ b/src/gsm_04_08.c @@ -827,7 +827,14 @@ static int gsm48_rr_rx_pag_resp(struct msgb *msg) mi_to_string(mi_string, sizeof(mi_string), &pr->mi[0], pr->mi_len); DEBUGP(DRR, "PAGING RESPONSE: mi_type=0x%02x MI(%s)\n", mi_type, mi_string); - subscr = subscr_get_by_tmsi(mi_string); + switch (mi_type) { + case GSM_MI_TYPE_TMSI: + subscr = subscr_get_by_tmsi(mi_string); + break; + case GSM_MI_TYPE_IMSI: + subscr = subscr_get_by_imsi(mi_string); + break; + } if (!subscr) { DEBUGP(DRR, "<- Can't find any subscriber for this ID\n");