summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2009-03-12 21:43:51 +0000
committerMark Michelson <mmichelson@digium.com>2009-03-12 21:43:51 +0000
commita1a900616397551bcd0d74c729eae8272a40390e (patch)
tree00623933458e5737a5b2361a6f3f164a3a7f4094 /apps
parent593d643d24ae130e07dc82fe7d20763df33a9d27 (diff)
Run the macro on the queue member's channel when he answers, not the caller's channel.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@181846 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index f9cc87866..5f99de4c2 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -4037,7 +4037,7 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce
application = pbx_findapp("Macro");
if (application) {
- res = pbx_exec(qe->chan, application, macroexec);
+ res = pbx_exec(peer, application, macroexec);
ast_debug(1, "Macro exited with status %d\n", res);
res = 0;
} else {