summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-11-08 19:36:20 +0000
committerMark Spencer <markster@digium.com>2005-11-08 19:36:20 +0000
commitc5f0a6db6f4a837f11f0fa672684f4456109a8bc (patch)
treeb43e6d43e80640e7deb25e088fe633437925d76f
parent5efc81c7892e392de48e225f3dcc8c68855ef962 (diff)
Fix three-way issue
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7029 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xchannels/chan_zap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 199a377ba..d9a7b4771 100755
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -3182,7 +3182,7 @@ static enum ast_bridge_result zt_bridge(struct ast_channel *c0, struct ast_chann
(t0 != p0->subs[SUB_REAL].inthreeway) ||
(t1 != p1->subs[SUB_REAL].inthreeway) ||
(oi0 != i0) ||
- (oi1 != i0)) {
+ (oi1 != i1)) {
ast_log(LOG_DEBUG, "Something changed out on %d/%d to %d/%d, returning -3 to restart\n",
op0->channel, oi0, op1->channel, oi1);
res = AST_BRIDGE_RETRY;