aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_dial.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-16 23:39:29 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-16 23:39:29 +0000
commit080ef129f82e994a6999e21196fc174fc42a70d9 (patch)
tree822b3cfbeb74c4d2b488a98eb6e86e97e87f9544 /apps/app_dial.c
parent20ce7815f315364cbd9b4e72cf6f9d3854a8de62 (diff)
Inherit channel variables when call forwarding through chan_local (issue #7095 reported by raarts)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@27595 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_dial.c')
-rw-r--r--apps/app_dial.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index b3fe1c023..da44e5820 100644
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -472,6 +472,8 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct dial_l
c = o->chan = ast_request(tech, in->nativeformats, stuff, &cause);
if (!c)
ast_log(LOG_NOTICE, "Unable to create local channel for call forward to '%s/%s' (cause = %d)\n", tech, stuff, cause);
+ else
+ ast_channel_inherit_variables(in, o->chan);
} else {
if (option_verbose > 2)
ast_verbose(VERBOSE_PREFIX_3 "Too many forwards from %s\n", c->name);
@@ -1051,6 +1053,8 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
tmp->chan = ast_request(tech, chan->nativeformats, stuff, &cause);
if (!tmp->chan)
ast_log(LOG_NOTICE, "Unable to create local channel for call forward to '%s/%s' (cause = %d)\n", tech, stuff, cause);
+ else
+ ast_channel_inherit_variables(chan, tmp->chan);
} else {
if (option_verbose > 2)
ast_verbose(VERBOSE_PREFIX_3 "Too many forwards from %s\n", tmp->chan->name);