aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/gsm_04_08_utils.c
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2010-12-01 21:41:35 +0100
committerSylvain Munaut <tnt@246tNt.com>2010-12-01 22:39:40 +0100
commitc7ff2572a723e6ace3006e6d7c77c0b19c0e0401 (patch)
tree3196b6c8f48814827d68e91df6271f22bb7f81f9 /openbsc/src/gsm_04_08_utils.c
parent1e24550d3dabd4da1bd9611222494a023ad054c4 (diff)
paging: Give the msgb that caused paging_stop up to the paging callback
The handler might need to know some info of the paging response Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Diffstat (limited to 'openbsc/src/gsm_04_08_utils.c')
-rw-r--r--openbsc/src/gsm_04_08_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/gsm_04_08_utils.c b/openbsc/src/gsm_04_08_utils.c
index e8d54ac98..b63293389 100644
--- a/openbsc/src/gsm_04_08_utils.c
+++ b/openbsc/src/gsm_04_08_utils.c
@@ -309,7 +309,7 @@ int gsm48_handle_paging_resp(struct gsm_subscriber_connection *conn,
dispatch_signal(SS_PAGING, S_PAGING_SUCCEEDED, &sig_data);
/* Stop paging on the bts we received the paging response */
- paging_request_stop(conn->bts, subscr, conn);
+ paging_request_stop(conn->bts, subscr, conn, msg);
return 0;
}