diff options
Diffstat (limited to 'src/sccp_state.c')
-rw-r--r-- | src/sccp_state.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sccp_state.c b/src/sccp_state.c index c2b3834..e961fdd 100644 --- a/src/sccp_state.c +++ b/src/sccp_state.c @@ -71,7 +71,7 @@ void app_forward_sccp(struct ss7_application *app, struct msgb *_msg, int sls) return; } - rc = bss_patch_filter_msg(_msg, &result, BSS_DIR_MSC); + rc = bss_patch_filter_msg(app, _msg, &result, BSS_DIR_MSC); if (rc == BSS_FILTER_RESET) { LOGP(DMSC, LOGL_NOTICE, "Filtering BSS Reset from the BSC\n"); msc_mgcp_reset(msc); @@ -549,7 +549,7 @@ void msc_dispatch_sccp(struct msc_connection *msc, struct msgb *msg) struct sccp_parse_result result; int rc; - rc = bss_patch_filter_msg(msg, &result, BSS_DIR_BSC); + rc = bss_patch_filter_msg(msc->app, msg, &result, BSS_DIR_BSC); if (rc == BSS_FILTER_RESET_ACK) { LOGP(DMSC, LOGL_NOTICE, "Filtering reset ack from the MSC\n"); |