aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/gprs/gb_proxy_peer.c
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2014-09-19 16:03:07 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-10-09 17:45:14 +0200
commitf8562e362b2cafe15a9b10be0f3b0d8be831c1ee (patch)
treec8b564ca8275efe5c20b045b22320907f87dff51 /openbsc/src/gprs/gb_proxy_peer.c
parent91d2f8a7048bfed3519026bb2f821bbe417c0eec (diff)
gbproxy: Rename the field 'enabled_tllis' to 'logical_links'
This field in struct gbproxy_patch_state has involved and holds a list of all tracked logical links now. Thus the name is modified accordingly. Sponsored-by: On-Waves ehf
Diffstat (limited to 'openbsc/src/gprs/gb_proxy_peer.c')
-rw-r--r--openbsc/src/gprs/gb_proxy_peer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/gprs/gb_proxy_peer.c b/openbsc/src/gprs/gb_proxy_peer.c
index 8f9066567..ce6690e5b 100644
--- a/openbsc/src/gprs/gb_proxy_peer.c
+++ b/openbsc/src/gprs/gb_proxy_peer.c
@@ -163,7 +163,7 @@ struct gbproxy_peer *gbproxy_peer_alloc(struct gbproxy_config *cfg, uint16_t bvc
llist_add(&peer->list, &cfg->bts_peers);
- INIT_LLIST_HEAD(&peer->patch_state.enabled_tllis);
+ INIT_LLIST_HEAD(&peer->patch_state.logical_links);
return peer;
}