aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/gprs/gprs_sgsn.c
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2014-10-31 12:20:49 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-11-14 09:23:38 +0100
commitabdf02b9b988a816201b4530f36f709ca4c146ac (patch)
treedcdbadef88738162fea5bdd033e922b3ae561219 /openbsc/src/gprs/gprs_sgsn.c
parenta790456f1b826ea204f47c4aa4973dc777d00d2a (diff)
sgsn: Split gsm0408_gprs_force_reattach into 2 functions
This patch replaces gsm0408_gprs_force_reattach(msg, mmctx) by two functions - gsm0408_gprs_force_reattach(mmctx) - gsm0408_gprs_force_reattach_oldmsg(msg) The old function basically consists of the code of the two new functions, where the code path selected depends on mmctx == NULL, which is harder to maintain, less obvious to use, and not consistent with many other SGSN functions. Sponsored-by: On-Waves ehf
Diffstat (limited to 'openbsc/src/gprs/gprs_sgsn.c')
-rw-r--r--openbsc/src/gprs/gprs_sgsn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/gprs/gprs_sgsn.c b/openbsc/src/gprs/gprs_sgsn.c
index 15f475394..c4ff3c27d 100644
--- a/openbsc/src/gprs/gprs_sgsn.c
+++ b/openbsc/src/gprs/gprs_sgsn.c
@@ -448,6 +448,6 @@ int drop_all_pdp_for_ggsn(struct sgsn_ggsn_ctx *ggsn)
int sgsn_force_reattach_oldmsg(struct msgb *oldmsg)
{
- return gsm0408_gprs_force_reattach(oldmsg, NULL);
+ return gsm0408_gprs_force_reattach_oldmsg(oldmsg);
}