[svn-commits] kpfleming: branch 1.6.1 r215164 - in /branches/1.6.1: ./ main/frame.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Tue Sep 1 14:59:34 CDT 2009
Author: kpfleming
Date: Tue Sep 1 14:59:31 2009
New Revision: 215164
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=215164
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.1/ (props changed)
branches/1.6.1/main/frame.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/main/frame.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.1/main/frame.c?view=diff&rev=215164&r1=215163&r2=215164
==============================================================================
--- branches/1.6.1/main/frame.c (original)
+++ branches/1.6.1/main/frame.c Tue Sep 1 14:59:31 2009
@@ -836,7 +836,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.ptr;
More information about the svn-commits
mailing list