A small change to fix iax2 native bridging.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@115669 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Brett Bryant
2008-05-12 15:17:32 +00:00
parent 5e3d36e4aa
commit 9575b82389
+4 -1
View File
@@ -3766,8 +3766,11 @@ static enum ast_bridge_result iax2_bridge(struct ast_channel *c0, struct ast_cha
struct timeval waittimer = {0, 0}, tv;
/* We currently do not support native bridging if a timeoutms value has been provided */
if (timeoutms)
if (timeoutms > 0) {
return AST_BRIDGE_FAILED;
}
timeoutms = 0;
lock_both(callno0, callno1);
if (!iaxs[callno0] || !iaxs[callno1]) {