[Asterisk-cvs] asterisk/channels chan_iax2.c,1.182,1.183
markster at lists.digium.com
markster at lists.digium.com
Sun Sep 12 11:28:08 CDT 2004
Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv6607/channels
Modified Files:
chan_iax2.c
Log Message:
Don't forget to return something other than -1 on the first pass if appropriate!
Index: chan_iax2.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_iax2.c,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -d -r1.182 -r1.183
--- chan_iax2.c 12 Sep 2004 15:05:37 -0000 1.182
+++ chan_iax2.c 12 Sep 2004 15:29:56 -0000 1.183
@@ -7168,7 +7168,7 @@
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");
}
More information about the svn-commits
mailing list