From b2a1ad7946578de4395e86d6855c179d7e938119 Mon Sep 17 00:00:00 2001 From: Richard Mudgett <rmudgett@digium.com> Date: Mon, 15 Feb 2010 22:08:23 +0000 Subject: [PATCH] Restore triedtopribridge flag code removed in -r211197. Ooops. Failed to note that we were inside a for loop and pri_channel_bridge() needs to be executed only once. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@246669 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_dahdi.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c index 890fc68395..aadee12b43 100644 --- a/channels/chan_dahdi.c +++ b/channels/chan_dahdi.c @@ -6391,6 +6391,7 @@ static enum ast_bridge_result dahdi_bridge(struct ast_channel *c0, struct ast_ch struct ast_channel *oc0, *oc1; enum ast_bridge_result res; #ifdef PRI_2BCT + int triedtopribridge = 0; q931_call *q931c0; q931_call *q931c1; #endif @@ -6642,7 +6643,8 @@ static enum ast_bridge_result dahdi_bridge(struct ast_channel *c0, struct ast_ch q931c1 = NULL; break; } - if (q931c0 && q931c1 && p0->transfer && p1->transfer) { + if (q931c0 && q931c1 && p0->transfer && p1->transfer && !triedtopribridge) { + triedtopribridge = 1; pri_channel_bridge(q931c0, q931c1); } #endif -- GitLab