[asterisk-commits] jrose: trunk r379950 - in /trunk: ./ res/res_fax_spandsp.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Jan 22 16:19:05 CST 2013
Author: jrose
Date: Tue Jan 22 16:19:02 2013
New Revision: 379950
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=379950
Log:
res_fax_spandsp: fix t38 transmission bug caused by not returning success
This patch fixes the problem, but the issue includes a test which is still
being considered for the automated test suite.
(issue ASTERISK-20919)
Reported by: NITESH BANSAL
Patches:
patch_ast_fax_spandsp.patch uploaded by NITESH BANSAL (license 6418)
........
Merged revisions 379949 from http://svn.asterisk.org/svn/asterisk/branches/11
Modified:
trunk/ (props changed)
trunk/res/res_fax_spandsp.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-11-merged' - no diff available.
Modified: trunk/res/res_fax_spandsp.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_fax_spandsp.c?view=diff&rev=379950&r1=379949&r2=379950
==============================================================================
--- trunk/res/res_fax_spandsp.c (original)
+++ trunk/res/res_fax_spandsp.c Tue Jan 22 16:19:02 2013
@@ -227,6 +227,7 @@
} else {
/* no need to lock, this all runs in the same thread */
AST_LIST_INSERT_TAIL(&p->read_frames, f, frame_list);
+ res = 0;
}
return res;
More information about the asterisk-commits
mailing list