You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ma...@apache.org on 2013/01/18 22:49:37 UTC

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

Author: markphip
Date: Fri Jan 18 21:49:37 2013
New Revision: 1435361

URL: http://svn.apache.org/viewvc?rev=1435361&view=rev
Log:
JavaHL: status API is always processing externals, even when you ask
it to ignore them.

* subversion/bindings/javahl/native/SVNClient.cpp
  (SVNClient::status): Fixed order of parameters when calling API

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=1435361&r1=1435360&r2=1435361&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp (original)
+++ subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp Fri Jan 18 21:49:37 2013
@@ -169,8 +169,8 @@ SVNClient::status(const char *path, svn_
     SVN_JNI_ERR(svn_client_status5(&youngest, ctx, checkedPath.c_str(),
                                    &rev,
                                    depth,
-                                   getAll, onServer, noIgnore, FALSE,
-                                   ignoreExternals,
+                                   getAll, onServer, noIgnore, ignoreExternals,
+                                   FALSE,
                                    changelists.array(subPool),
                                    StatusCallback::callback, callback,
                                    subPool.getPool()), );