[asterisk-commits] kpfleming: branch 1.6.0 r215162 - in /branches/1.6.0: ./ main/frame.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Sep 1 14:54:05 CDT 2009


Author: kpfleming
Date: Tue Sep  1 14:54:01 2009
New Revision: 215162

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=215162
Log:
Merged revisions 215161 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r215161 | kpfleming | 2009-09-01 14:50:48 -0500 (Tue, 01 Sep 2009) | 3 lines
  
  Ensure that frame dumps of AST_CONTROL_T38_PARAMETERS frames are properly
  decoded.
........

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/main/frame.c

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

Modified: branches/1.6.0/main/frame.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.0/main/frame.c?view=diff&rev=215162&r1=215161&r2=215162
==============================================================================
--- branches/1.6.0/main/frame.c (original)
+++ branches/1.6.0/main/frame.c Tue Sep  1 14:54:01 2009
@@ -834,7 +834,7 @@
 			strcpy(subclass, "Unhold");
 			break;
 		case AST_CONTROL_T38_PARAMETERS:
-			if (f->datalen != sizeof(struct ast_control_t38_parameters *)) {
+			if (f->datalen != sizeof(struct ast_control_t38_parameters)) {
 				message = "Invalid";
 			} else {
 				struct ast_control_t38_parameters *parameters = f->data;




More information about the asterisk-commits mailing list