aboutsummaryrefslogtreecommitdiffstats
path: root/src/sgsn/pdpctx.c
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2022-12-22 19:17:40 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2023-01-17 17:46:51 +0100
commit0a03a1430a37dd6f8168fb537dc81d4ce2ccd7da (patch)
tree8db4c270df4b52d054d182931dcc95f120025b1c /src/sgsn/pdpctx.c
parentc03dc7ce6e62a82feba170bce8edb1013e635d87 (diff)
[2/N] Use libosmo-gprs-{llc,sndcp}pespin/libosmo-gprs
Diffstat (limited to 'src/sgsn/pdpctx.c')
-rw-r--r--src/sgsn/pdpctx.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sgsn/pdpctx.c b/src/sgsn/pdpctx.c
index e77942040..64b93f486 100644
--- a/src/sgsn/pdpctx.c
+++ b/src/sgsn/pdpctx.c
@@ -33,7 +33,6 @@
#include <osmocom/sgsn/debug.h>
#include <osmocom/sgsn/signal.h>
#include <osmocom/sgsn/gtp_ggsn.h>
-#include <osmocom/sgsn/gprs_llc_xid.h>
#include <osmocom/sgsn/gprs_sndcp.h>
#include <osmocom/sgsn/gprs_llc.h>
#include <osmocom/sgsn/gprs_sm.h>
@@ -104,7 +103,7 @@ void sgsn_pdp_ctx_terminate(struct sgsn_pdp_ctx *pdp)
if (pdp->mm->ran_type == MM_CTX_T_GERAN_Gb) {
/* Force the deactivation of the SNDCP layer */
if (pdp->mm->gb.llme)
- sndcp_sm_deactivate_ind(&pdp->mm->gb.llme->lle[pdp->sapi], pdp->nsapi);
+ sgsn_sndcp_snsm_deactivate_ind(pdp->mm->gb.llme->tlli, pdp->nsapi);
}
memset(&sig_data, 0, sizeof(sig_data));