aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-12-26 22:37:11 +0100
committerHarald Welte <laforge@gnumonks.org>2010-12-26 22:37:11 +0100
commitfc10ac910e184951357a64db8d1cb8dc93ee5460 (patch)
tree3d83cf291346c9fafec2bb41cd95aa4f50e1958a
parent59d603fcc40f7a0b5cbb822ae4bc1b1a5ba4cf2d (diff)
GSM 04.08: Ask for IMEISV instead of IMEI
-rw-r--r--openbsc/src/gsm_04_08.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/gsm_04_08.c b/openbsc/src/gsm_04_08.c
index 4966d2fe3..f141e1cd3 100644
--- a/openbsc/src/gsm_04_08.c
+++ b/openbsc/src/gsm_04_08.c
@@ -542,7 +542,7 @@ static int mm_rx_loc_upd_req(struct gsm_subscriber_connection *conn, struct msgb
case GSM_MI_TYPE_IMSI:
DEBUGPC(DMM, "\n");
/* we always want the IMEI, too */
- rc = mm_tx_identity_req(conn, GSM_MI_TYPE_IMEI);
+ rc = mm_tx_identity_req(conn, GSM_MI_TYPE_IMEISV);
conn->loc_operation->waiting_for_imei = 1;
/* look up subscriber based on IMSI, create if not found */
@@ -562,7 +562,7 @@ static int mm_rx_loc_upd_req(struct gsm_subscriber_connection *conn, struct msgb
conn->loc_operation->waiting_for_imsi = 1;
}
/* we always want the IMEI, too */
- rc = mm_tx_identity_req(conn, GSM_MI_TYPE_IMEI);
+ rc = mm_tx_identity_req(conn, GSM_MI_TYPE_IMEISV);
conn->loc_operation->waiting_for_imei = 1;
break;
case GSM_MI_TYPE_IMEI: