[asterisk-commits] mmichelson: branch 1.6.2 r186836 - in /branches/1.6.2: ./ main/channel.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Apr 7 18:52:21 CDT 2009
Author: mmichelson
Date: Tue Apr 7 18:52:17 2009
New Revision: 186836
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=186836
Log:
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
........
................
Modified:
branches/1.6.2/ (props changed)
branches/1.6.2/main/channel.c
Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.2/main/channel.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.2/main/channel.c?view=diff&rev=186836&r1=186835&r2=186836
==============================================================================
--- branches/1.6.2/main/channel.c (original)
+++ branches/1.6.2/main/channel.c Tue Apr 7 18:52:17 2009
@@ -4886,6 +4886,9 @@
}
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);
More information about the asterisk-commits
mailing list