make sure we always schedule a location updating reject

IT sems that if a MS uses the TMSI of a previous network, we did not start
the reject timer.  Thanks to Andreas Eversberg.
This commit is contained in:
Harald Welte 2009-07-04 10:18:00 +02:00
parent 4a3464c565
commit 24516ea2d6
1 changed files with 5 additions and 6 deletions

View File

@ -1256,6 +1256,9 @@ static int mm_rx_loc_upd_req(struct msgb *msg)
break;
}
/* schedule the reject timer */
schedule_reject(lchan);
if (!subscr) {
DEBUGPC(DRR, "<- Can't find any subscriber for this ID\n");
/* FIXME: request id? close channel? */
@ -1264,12 +1267,8 @@ static int mm_rx_loc_upd_req(struct msgb *msg)
lchan->subscr = subscr;
/*
* Schedule the reject timer and check if we can let the
* subscriber into our network immediately or if we need to wait
* for identity responses.
*/
schedule_reject(lchan);
/* check if we can let the subscriber into our network immediately
* or if we need to wait for identity responses. */
return gsm0408_authorize(lchan, msg);
}