aboutsummaryrefslogtreecommitdiffstats
path: root/src/gsm_04_08.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-02-28 18:22:03 +0000
committerHarald Welte <laforge@gnumonks.org>2009-02-28 18:22:03 +0000
commit015b9ad9db85d5be68c78af858f1314c7390e88a (patch)
treefbaff411827f9571a549b07be09fbf2e274eeccc /src/gsm_04_08.c
parentddab3c78c526de42600d3309ce4683e50cdaf350 (diff)
actually request the IMEI not IMEISV, since Phase 1 doesn't have IMEISV
Diffstat (limited to 'src/gsm_04_08.c')
-rw-r--r--src/gsm_04_08.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gsm_04_08.c b/src/gsm_04_08.c
index 936d72f24..d5a5bee2e 100644
--- a/src/gsm_04_08.c
+++ b/src/gsm_04_08.c
@@ -553,7 +553,7 @@ static int mm_rx_loc_upd_req(struct msgb *msg)
case GSM_MI_TYPE_IMSI:
/* we always want the IMEI, too */
use_lchan(lchan);
- rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEISV);
+ rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEI);
lchan->loc_operation->waiting_for_imei = 1;
/* look up subscriber based on IMSI */
@@ -562,7 +562,7 @@ static int mm_rx_loc_upd_req(struct msgb *msg)
case GSM_MI_TYPE_TMSI:
/* we always want the IMEI, too */
use_lchan(lchan);
- rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEISV);
+ rc = mm_tx_identity_req(lchan, GSM_MI_TYPE_IMEI);
lchan->loc_operation->waiting_for_imei = 1;
/* look up the subscriber based on TMSI, request IMSI if it fails */