Author: rhuijben
Date: Fri Jun 3 23:16:49 2011
New Revision: 1131284
URL: http://svn.apache.org/viewvc?rev=1131284&view=rev
Log:
Fix the ignore_content_type flag for users of the deprecated libsvn_client
diff functions.
(Found via the SharpSvn test suite).
* subversion/libsvn_client/deprecated.c
(svn_client_diff4,
svn_client_diff_peg4): Following up on r958881, fix the argument ordering
in a deprecated function wrapper to fix the ingore_content_type flag.
Modified:
subversion/trunk/subversion/libsvn_client/deprecated.c
Modified: subversion/trunk/subversion/libsvn_client/deprecated.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/deprecated.c?rev=1131284&r1=1131283&r2=1131284&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/deprecated.c (original)
+++ subversion/trunk/subversion/libsvn_client/deprecated.c Fri Jun 3 23:16:49
2011
@@ -844,7 +844,7 @@ svn_client_diff4(const apr_array_header_
return svn_client_diff5(options, path1, revision1, path2,
revision2, relative_to_dir, depth,
ignore_ancestry, no_diff_deleted, FALSE,
- FALSE, ignore_content_type, header_encoding,
+ ignore_content_type, FALSE, header_encoding,
outfile, errfile, changelists, ctx, pool);
}
@@ -940,8 +940,8 @@ svn_client_diff_peg4(const apr_array_hea
ignore_ancestry,
no_diff_deleted,
FALSE,
- FALSE,
ignore_content_type,
+ FALSE,
header_encoding,
outfile,
errfile,