You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2012/11/14 12:27:32 UTC

svn commit: r1409165 - /subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp

Author: rhuijben
Date: Wed Nov 14 11:27:31 2012
New Revision: 1409165

URL: http://svn.apache.org/viewvc?rev=1409165&view=rev
Log:
* subversion/bindings/javahl/native/SVNClient.cpp
  (SVNClient::doImport): Unbreak compilation. Needs followup to provide access
    to this new property from java.

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=1409165&r1=1409164&r2=1409165&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp (original)
+++ subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp Wed Nov 14 11:27:31 2012
@@ -584,7 +584,7 @@ void SVNClient::doImport(const char *pat
         return;
 
     SVN_JNI_ERR(svn_client_import5(intPath.c_str(), intUrl.c_str(), depth,
-                                   noIgnore, ignoreUnknownNodeTypes,
+                                   noIgnore, FALSE, ignoreUnknownNodeTypes,
                                    revprops.hash(subPool),
                                    ImportFilterCallback::callback, ifCallback,
                                    CommitCallback::callback, commitCallback,