projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
71df4d9
)
Don't forget to return something other than -1 on the first pass if appropriate!
author
Mark Spencer
<markster@digium.com>
Sun, 12 Sep 2004 15:29:56 +0000
(15:29 +0000)
committer
Mark Spencer
<markster@digium.com>
Sun, 12 Sep 2004 15:29:56 +0000
(15:29 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3767
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
channels/chan_iax2.c
patch
|
blob
|
history
diff --git
a/channels/chan_iax2.c
b/channels/chan_iax2.c
index
8609207
..
8427bdf
100755
(executable)
--- a/
channels/chan_iax2.c
+++ b/
channels/chan_iax2.c
@@
-7168,7
+7168,7
@@
static int iax2_exec(struct ast_channel *chan, char *context, char *exten, int p
ast_mutex_unlock(&dpcache_lock);
dial = pbx_findapp("Dial");
if (dial) {
- pbx_exec(chan, dial, req, newstack);
+ return pbx_exec(chan, dial, req, newstack);
} else {
ast_log(LOG_WARNING, "No dial application registered\n");
}