[svn-commits] mmichelson: branch 1.6.0 r181848 - in /branches/1.6.0: ./ apps/app_queue.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Mar 12 16:45:00 CDT 2009


Author: mmichelson
Date: Thu Mar 12 16:44:57 2009
New Revision: 181848

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=181848
Log:
Merged revisions 181846 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r181846 | mmichelson | 2009-03-12 16:43:51 -0500 (Thu, 12 Mar 2009) | 3 lines
  
  Run the macro on the queue member's channel when he answers, not the caller's channel.
........

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/apps/app_queue.c

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/apps/app_queue.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.0/apps/app_queue.c?view=diff&rev=181848&r1=181847&r2=181848
==============================================================================
--- branches/1.6.0/apps/app_queue.c (original)
+++ branches/1.6.0/apps/app_queue.c Thu Mar 12 16:44:57 2009
@@ -3790,7 +3790,7 @@
 			app = pbx_findapp("Macro");
 
 			if (app) {
-				res = pbx_exec(qe->chan, app, macroexec);
+				res = pbx_exec(peer, app, macroexec);
 				ast_debug(1, "Macro exited with status %d\n", res);
 				res = 0;
 			} else {




More information about the svn-commits mailing list