You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2017/10/13 07:52:28 UTC

svn commit: r1812076 - /subversion/trunk/subversion/bindings/javahl/native/SVNRepos.cpp

Author: julianfoad
Date: Fri Oct 13 07:52:28 2017
New Revision: 1812076

URL: http://svn.apache.org/viewvc?rev=1812076&view=rev
Log:
Unbreak the JavaHL bindings after 'svnadmin dump include/exclude'.

(This does not yet expose the new capability.)

A follow-up to r1811992.

* subversion/bindings/javahl/native/SVNRepos.cpp
  (dump): Supply null arguments for the new 'filter' parameters.

Modified:
    subversion/trunk/subversion/bindings/javahl/native/SVNRepos.cpp

Modified: subversion/trunk/subversion/bindings/javahl/native/SVNRepos.cpp
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/javahl/native/SVNRepos.cpp?rev=1812076&r1=1812075&r2=1812076&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/javahl/native/SVNRepos.cpp (original)
+++ subversion/trunk/subversion/bindings/javahl/native/SVNRepos.cpp Fri Oct 13 07:52:28 2017
@@ -247,6 +247,7 @@ void SVNRepos::dump(File &path, OutputSt
                                     ? ReposNotifyCallback::notify
                                     : NULL,
                                  notifyCallback,
+                                 NULL, NULL,
                                  checkCancel, this, requestPool.getPool()), );
 }