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 2015/12/09 18:03:53 UTC

svn commit: r1718913 - /subversion/trunk/tools/dev/svnmover/svnmover.c

Author: julianfoad
Date: Wed Dec  9 17:03:53 2015
New Revision: 1718913

URL: http://svn.apache.org/viewvc?rev=1718913&view=rev
Log:
* tools/dev/svnmover/svnmover.c
  (branch_diff_r): Following r1718900, restore the ability to diff a subtree.

Modified:
    subversion/trunk/tools/dev/svnmover/svnmover.c

Modified: subversion/trunk/tools/dev/svnmover/svnmover.c
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/svnmover/svnmover.c?rev=1718913&r1=1718912&r2=1718913&view=diff
==============================================================================
--- subversion/trunk/tools/dev/svnmover/svnmover.c (original)
+++ subversion/trunk/tools/dev/svnmover/svnmover.c Wed Dec  9 17:03:53 2015
@@ -2197,8 +2197,8 @@ branch_diff_r(svn_branch__el_rev_id_t *l
     svnmover_notify("%s--- merge history is different: %s", prefix,
                     merge_history_difference);
 
-  SVN_ERR(subtree_diff_r(left->branch, svn_branch__root_eid(left->branch),
-                         right->branch, svn_branch__root_eid(right->branch),
+  SVN_ERR(subtree_diff_r(left->branch, left->eid,
+                         right->branch, right->eid,
                          diff_func, prefix, scratch_pool));
   return SVN_NO_ERROR;
 }