From ed7938ffd98223b708c1e03b8501e4e42821bc41 Mon Sep 17 00:00:00 2001 From: Jacob Erlbeck Date: Fri, 31 Oct 2014 12:20:49 +0100 Subject: 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 patch 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 --- openbsc/src/gprs/gprs_sgsn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openbsc/src/gprs/gprs_sgsn.c') 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); } -- cgit v1.2.3