[asterisk-commits] tilghman: branch 1.4 r237318 - /branches/1.4/channels/chan_local.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Jan 4 10:19:03 CST 2010


Author: tilghman
Date: Mon Jan  4 10:18:59 2010
New Revision: 237318

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=237318
Log:
It's also possible for the Local channel to directly execute an Application.
Reviewboard: https://reviewboard.asterisk.org/r/452/

Modified:
    branches/1.4/channels/chan_local.c

Modified: branches/1.4/channels/chan_local.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/channels/chan_local.c?view=diff&rev=237318&r1=237317&r2=237318
==============================================================================
--- branches/1.4/channels/chan_local.c (original)
+++ branches/1.4/channels/chan_local.c Mon Jan  4 10:18:59 2010
@@ -212,7 +212,7 @@
 	}
 
 	if (other) {
-		if (other->pbx || other->_bridge) {
+		if (other->pbx || other->_bridge || !ast_strlen_zero(other->appl)) {
 			ast_queue_frame(other, f);
 		} /* else the frame won't go anywhere */
 		ast_channel_unlock(other);




More information about the asterisk-commits mailing list