Author: hwright
Date: Mon Oct 25 18:50:33 2010
New Revision: 1027231
URL: http://svn.apache.org/viewvc?rev=1027231&view=rev
Log:
Followup to r1027222 by updating JavaHL usage of svn_client_patch().
* subversion/bindings/javahl/native/SVNClient.cpp
(patch): Remove param to svn_client_patch().
Modified:
subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp
Modified: subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp?rev=1027231&r1=1027230&r2=1027231&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp (original)
+++ subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp Mon Oct 25
18:50:33 2010
@@ -1460,7 +1460,7 @@ SVNClient::patch(const char *patchPath,
// Should parameterize the following, instead of defaulting to FALSE
SVN_JNI_ERR(svn_client_patch(checkedPatchPath.c_str(),
checkedTargetPath.c_str(),
- dryRun, stripCount, FALSE, reverse,
+ dryRun, stripCount, reverse,
ignoreWhitespace, removeTempfiles,
PatchCallback::callback, callback,
ctx, requestPool.pool(),