aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-07-28 20:41:49 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-07-28 20:41:49 +0000
commit78ba7c33dc575aa5c2ff9959a9b0729dcfeae421 (patch)
treee79c8d299681c4639263ff6022d53998691b2a61 /channel.c
parent92633d15d84b068cf195d817838740a035bfa840 (diff)
Somehow matt's patch didn't make it all the way in
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3530 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index 16935f684..1f3848ae4 100755
--- a/channel.c
+++ b/channel.c
@@ -2468,7 +2468,7 @@ int ast_channel_bridge(struct ast_channel *c0, struct ast_channel *c1, struct as
long elapsed_ms=0, time_left_ms=0;
int playit=0, playitagain=1, first_time=1;
- flags = (config->allowdisconnect||config->allowredirect_out ? AST_BRIDGE_DTMF_CHANNEL_0 : 0) + (config->allowredirect_in ? AST_BRIDGE_DTMF_CHANNEL_1 : 0);
+ flags = (config->allowdisconnect_out||config->allowredirect_out ? AST_BRIDGE_DTMF_CHANNEL_0 : 0) + (config->allowdisconnect_in||config->allowredirect_in ? AST_BRIDGE_DTMF_CHANNEL_1 : 0);
/* timestamp */
gettimeofday(&start_time,NULL);