summaryrefslogtreecommitdiff
path: root/channels/chan_local.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2010-01-04 16:20:03 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2010-01-04 16:20:03 +0000
commit91a45e4d3e8a22830779e4d139f062b990d76d5e (patch)
tree93516e29f52c97f3a8a516f8dd1746e24975b934 /channels/chan_local.c
parent8160e756387cfe113bfe20f15526202f79ff3de0 (diff)
Merged revisions 237318 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r237318 | tilghman | 2010-01-04 10:18:59 -0600 (Mon, 04 Jan 2010) | 3 lines It's also possible for the Local channel to directly execute an Application. Reviewboard: https://reviewboard.asterisk.org/r/452/ ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@237319 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_local.c')
-rw-r--r--channels/chan_local.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_local.c b/channels/chan_local.c
index b86c48c8b..c1eaf92f2 100644
--- a/channels/chan_local.c
+++ b/channels/chan_local.c
@@ -257,7 +257,7 @@ static int local_queue_frame(struct local_pvt *p, int isoutbound, struct ast_fra
}
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);