aboutsummaryrefslogtreecommitdiffstats
path: root/src/gprs/gprs_sgsn.c
diff options
context:
space:
mode:
authorJonathan Santos <jrsantos@jonathanrsantos.com>2011-06-10 16:07:36 -0400
committerJonathan Santos <jrsantos@jonathanrsantos.com>2011-06-23 15:30:31 -0400
commitbd92172bf42c1589ded17d976dd0af3b90adc871 (patch)
tree7611ba952a9073b83036634e3efbac4e7113405a /src/gprs/gprs_sgsn.c
parentfe7724f1d4d6312a527e01f21defd8af2e313f6a (diff)
gprs: Fix bug that caused TLLI to change prematurely
Diffstat (limited to 'src/gprs/gprs_sgsn.c')
-rw-r--r--src/gprs/gprs_sgsn.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gprs/gprs_sgsn.c b/src/gprs/gprs_sgsn.c
index 443655418..a46711b45 100644
--- a/src/gprs/gprs_sgsn.c
+++ b/src/gprs/gprs_sgsn.c
@@ -108,7 +108,6 @@ struct sgsn_mm_ctx *sgsn_mm_ctx_by_tlli(uint32_t tlli,
llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
if ((ctx->p_tmsi | 0xC0000000) == tlli ||
(ctx->p_tmsi_old && (ctx->p_tmsi_old | 0xC0000000) == tlli)) {
- ctx->tlli = tlli;
return ctx;
}
}