aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_dial.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/app_dial.c')
-rw-r--r--apps/app_dial.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 4943727b2..1da9a0d89 100644
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -1240,6 +1240,10 @@ static void end_bridge_callback(void *data)
ast_channel_unlock(chan);
}
+static void end_bridge_callback_data_fixup(struct ast_bridge_config *bconfig, struct ast_channel *originator, struct ast_channel *terminator) {
+ bconfig->end_bridge_callback_data = originator;
+}
+
static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags64 *peerflags, int *continue_exec)
{
int res = -1; /* default: error */
@@ -1894,7 +1898,8 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
config.end_bridge_callback = end_bridge_callback;
config.end_bridge_callback_data = chan;
-
+ config.end_bridge_callback_data_fixup = end_bridge_callback_data_fixup;
+
if (moh) {
moh = 0;
ast_moh_stop(chan);