[asterisk-commits] mnicholson: trunk r339044 - in /trunk: ./ res/res_fax.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Oct 3 10:42:04 CDT 2011
Author: mnicholson
Date: Mon Oct 3 10:42:01 2011
New Revision: 339044
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=339044
Log:
Merged revisions 339043 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/10
........
r339043 | mnicholson | 2011-10-03 10:41:36 -0500 (Mon, 03 Oct 2011) | 2 lines
Don't clear the AST_FAX_TECH_MULTI_DOC flag right after we set it.
........
Modified:
trunk/ (props changed)
trunk/res/res_fax.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: trunk/res/res_fax.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_fax.c?view=diff&rev=339044&r1=339043&r2=339044
==============================================================================
--- trunk/res/res_fax.c (original)
+++ trunk/res/res_fax.c Mon Oct 3 10:42:01 2011
@@ -2224,16 +2224,16 @@
file_count++;
}
- if (file_count > 1) {
- details->caps |= AST_FAX_TECH_MULTI_DOC;
- }
-
ast_verb(3, "Channel '%s' sending FAX:\n", chan->name);
AST_LIST_TRAVERSE(&details->documents, doc, next) {
ast_verb(3, " %s\n", doc->filename);
}
details->caps = AST_FAX_TECH_SEND;
+
+ if (file_count > 1) {
+ details->caps |= AST_FAX_TECH_MULTI_DOC;
+ }
/* check for debug */
if (ast_test_flag(&opts, OPT_DEBUG) || global_fax_debug) {
More information about the asterisk-commits
mailing list