[svn-commits] file: branch 1.6.1 r183067 - in /branches/1.6.1: ./ main/channel.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Mar 18 17:28:47 CDT 2009


Author: file
Date: Wed Mar 18 17:28:43 2009
New Revision: 183067

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=183067
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.1/   (props changed)
    branches/1.6.1/main/channel.c

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/main/channel.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.1/main/channel.c?view=diff&rev=183067&r1=183066&r2=183067
==============================================================================
--- branches/1.6.1/main/channel.c (original)
+++ branches/1.6.1/main/channel.c Wed Mar 18 17:28:43 2009
@@ -4496,6 +4496,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