[svn-commits] kpfleming: branch 1.6.0 r209394 - /branches/1.6.0/apps/app_fax.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Jul 28 07:01:39 CDT 2009


Author: kpfleming
Date: Tue Jul 28 07:01:36 2009
New Revision: 209394

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=209394
Log:
Correct error in backport of latest app_fax fixes.

Modified:
    branches/1.6.0/apps/app_fax.c

Modified: branches/1.6.0/apps/app_fax.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.0/apps/app_fax.c?view=diff&rev=209394&r1=209393&r2=209394
==============================================================================
--- branches/1.6.0/apps/app_fax.c (original)
+++ branches/1.6.0/apps/app_fax.c Tue Jul 28 07:01:36 2009
@@ -372,7 +372,7 @@
 				if ((inf->frametype == AST_FRAME_CONTROL) &&
 				    (inf->subclass == AST_CONTROL_T38_PARAMETERS) &&
 				    (inf->datalen == sizeof(t38_parameters))) {
-					struct ast_control_t38_parameters *parameters = inf->data.ptr;
+					struct ast_control_t38_parameters *parameters = inf->data;
 					
 					switch (parameters->request_response) {
 					case AST_T38_NEGOTIATED:




More information about the svn-commits mailing list