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 2013/01/16 16:23:19 UTC

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

Author: rhuijben
Date: Wed Jan 16 15:23:18 2013
New Revision: 1433983

URL: http://svn.apache.org/viewvc?rev=1433983&view=rev
Log:
* subversion/bindings/javahl/native/SVNClient.cpp
  (SVNClient::diff): Unbreak compilation by updating caller.

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=1433983&r1=1433982&r2=1433983&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp (original)
+++ subversion/trunk/subversion/bindings/javahl/native/SVNClient.cpp Wed Jan 16 15:23:18 2013
@@ -940,6 +940,7 @@ void SVNClient::diff(const char *target1
     const char *c_relToDir = relativeToDir ?
       svn_dirent_canonicalize(relativeToDir, subPool.getPool()) :
       relativeToDir;
+    bool noDiffAdded = false; /* ### Promote to argument */
 
     SVN_JNI_NULL_PTR_EX(target1, "target", );
     // target2 is ignored when pegRevision is provided.
@@ -967,6 +968,7 @@ void SVNClient::diff(const char *target1
                                    c_relToDir,
                                    depth,
                                    ignoreAncestry,
+                                   noDiffAdded,
                                    noDiffDelete,
                                    showCopiesAsAdds,
                                    force,
@@ -995,6 +997,7 @@ void SVNClient::diff(const char *target1
                                c_relToDir,
                                depth,
                                ignoreAncestry,
+                               noDiffAdded,
                                noDiffDelete,
                                showCopiesAsAdds,
                                force,