[svn-commits] file: branch 1.6.2 r183068 - in /branches/1.6.2: ./ main/channel.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Wed Mar 18 17:30:29 CDT 2009
Author: file
Date: Wed Mar 18 17:30:26 2009
New Revision: 183068
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=183068
Log:
Merged revisions 183057 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r183057 | file | 2009-03-18 19:22:56 -0300 (Wed, 18 Mar 2009) | 6 lines
Fix an issue where a T38 control frame would get dropped.
If two channels were bridged together using a generic bridge the T38
control frame would get passed up instead of being indicated on the
other channel.
........
Modified:
branches/1.6.2/ (props changed)
branches/1.6.2/main/channel.c
Propchange: branches/1.6.2/
------------------------------------------------------------------------------
--- trunk-merged (original)
+++ trunk-merged Wed Mar 18 17:30:26 2009
@@ -1,1 +1,1 @@
-/trunk:1-182359,182408,182450,182525,182530,182553,182722,182847,183028
+/trunk:1-182359,182408,182450,182525,182530,182553,182722,182847,183028,183057
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=183068&r1=183067&r2=183068
==============================================================================
--- branches/1.6.2/main/channel.c (original)
+++ branches/1.6.2/main/channel.c Wed Mar 18 17:30:26 2009
@@ -4522,6 +4522,7 @@
case AST_CONTROL_UNHOLD:
case AST_CONTROL_VIDUPDATE:
case AST_CONTROL_SRCUPDATE:
+ case AST_CONTROL_T38:
ast_indicate_data(other, f->subclass, f->data.ptr, f->datalen);
if (jb_in_use) {
ast_jb_empty_and_reset(c0, c1);
More information about the svn-commits
mailing list