aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-05-18 14:36:11 +0200
committerHarald Welte <laforge@gnumonks.org>2010-05-18 14:36:11 +0200
commit3c0b9b9c2a5ee716a87c45ced1c5c9761ce3c2e8 (patch)
tree32574400775bc6c8a8b6aa041b93559fd7bee3b8 /openbsc
parent77289c202f1e0a748a31d473f7b64c6728377950 (diff)
[GPRS] SGSN: Make sure the PCO from GGSN are passed to the MS
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/src/gprs/gprs_gmm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/gprs/gprs_gmm.c b/openbsc/src/gprs/gprs_gmm.c
index 3eddaff10..3364713f6 100644
--- a/openbsc/src/gprs/gprs_gmm.c
+++ b/openbsc/src/gprs/gprs_gmm.c
@@ -688,7 +688,7 @@ int gsm48_tx_gsm_act_pdp_acc(struct sgsn_pdp_ctx *pdp)
/* Optional: Protocol configuration options (FIXME: why 'req') */
if (pdp->lib->pco_req.l && pdp->lib->pco_req.v)
msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT,
- pdp->lib->pco_neg.l, pdp->lib->pco_neg.v);
+ pdp->lib->pco_req.l, pdp->lib->pco_req.v);
/* Optional: Packet Flow Identifier */
return gsm48_gmm_sendmsg(msg, 0, pdp->mm);