aboutsummaryrefslogtreecommitdiffstats
path: root/main/channel.c
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-07 23:51:25 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-07 23:51:25 +0000
commit99343c9f4f0867f6a5e0f874a509709c9fd27df8 (patch)
tree43acc6cf22ab6598630eda1eede54891df18e0e6 /main/channel.c
parentb077fd106168e6124b1fc47a2bd8d6b2a9806f9c (diff)
Merged revisions 186833 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r186833 | mmichelson | 2009-04-07 18:50:56 -0500 (Tue, 07 Apr 2009) | 15 lines Merged revisions 186832 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r186832 | mmichelson | 2009-04-07 18:49:49 -0500 (Tue, 07 Apr 2009) | 8 lines Set the AST_FEATURE_WARNING_ACTIVE flag when a p2p bridge returns AST_BRIDGE_RETRY. Without this flag set, warning sounds will not be properly played to either party of the bridge. (closes issue #14845) Reported by: adomjan ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@186834 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/channel.c')
-rw-r--r--main/channel.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/main/channel.c b/main/channel.c
index dd0bec06b..54e0b4b2e 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -4830,6 +4830,9 @@ enum ast_bridge_result ast_channel_bridge(struct ast_channel *c0, struct ast_cha
}
switch (res) {
case AST_BRIDGE_RETRY:
+ if (config->play_warning) {
+ ast_set_flag(config, AST_FEATURE_WARNING_ACTIVE);
+ }
continue;
default:
ast_verb(3, "Native bridging %s and %s ended\n", c0->name, c1->name);