aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/gprs/gb_proxy.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-08-04 11:14:54 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-08-04 11:37:33 +0200
commitd4d36f22eed10b27e515e522bf10f4e9c90fba79 (patch)
tree470b8755f8fbe9ce015e4942fd9d15889f5fd0cf /openbsc/src/gprs/gb_proxy.c
parent18739ea32d5030f5080158fbdd2c3bf8ab6d01e2 (diff)
gbproxy: Correct the method name. We work on TLLIs
Done with Jacob
Diffstat (limited to 'openbsc/src/gprs/gb_proxy.c')
-rw-r--r--openbsc/src/gprs/gb_proxy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/gprs/gb_proxy.c b/openbsc/src/gprs/gb_proxy.c
index 3e5afa485..e7921ebbe 100644
--- a/openbsc/src/gprs/gb_proxy.c
+++ b/openbsc/src/gprs/gb_proxy.c
@@ -635,7 +635,7 @@ static int gbprox_check_imsi(struct gbprox_peer *peer,
return 1;
}
-int gbprox_remove_stale_ttlis(struct gbprox_peer *peer, time_t now)
+int gbprox_remove_stale_tllis(struct gbprox_peer *peer, time_t now)
{
struct gbprox_patch_state *state = &peer->patch_state;
struct gbprox_tlli_info *tlli_info = NULL, *nxt;
@@ -729,7 +729,7 @@ static void gbprox_register_tlli(struct gbprox_peer *peer, uint32_t tlli,
llist_add(&tlli_info->list, &state->enabled_tllis);
state->enabled_tllis_count += 1;
- gbprox_remove_stale_ttlis(peer, now);
+ gbprox_remove_stale_tllis(peer, now);
if (tlli_info != llist_entry(state->enabled_tllis.next,
struct gbprox_tlli_info, list)) {