From 1bc7de50be7e72bea081887eca2acefae87f5e75 Mon Sep 17 00:00:00 2001 From: Holger Freyther Date: Wed, 31 Dec 2008 18:50:58 +0000 Subject: [PATCH] Fix the compile the timer got renamed --- src/gsm_04_08.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gsm_04_08.c b/src/gsm_04_08.c index 7dccb14e4..80aeaa40b 100644 --- a/src/gsm_04_08.c +++ b/src/gsm_04_08.c @@ -338,7 +338,7 @@ static int mm_rx_id_resp(struct msgb *msg) if (authorize_subscriber(lchan->subscr)) { db_subscriber_alloc_tmsi(lchan->subscr); tmsi = strtoul(lchan->subscr->tmsi, NULL, 10); - del_timer(&lchan->timer); + del_timer(&lchan->updating_timer); return gsm0408_loc_upd_acc(msg->lchan, tmsi); } else { schedule_reject(lchan); @@ -444,7 +444,7 @@ static int mm_rx_loc_upd_req(struct msgb *msg) tmsi = strtoul(subscr->tmsi, NULL, 10); - del_timer(&lchan->timer); + del_timer(&lchan->updating_timer); return gsm0408_loc_upd_acc(lchan, tmsi); }