You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ar...@apache.org on 2010/08/18 07:34:28 UTC

svn commit: r986567 - /subversion/trunk/subversion/svnrdump/dump_editor.c

Author: artagnon
Date: Wed Aug 18 05:34:27 2010
New Revision: 986567

URL: http://svn.apache.org/viewvc?rev=986567&view=rev
Log:
* subversion/svnrdump/dump_editor.c
  (open_file): Followup r986466 to fix a silly mistake concerning the
  order of the arguments in svn_relpath_join.

Found by: rhuijben

Modified:
    subversion/trunk/subversion/svnrdump/dump_editor.c

Modified: subversion/trunk/subversion/svnrdump/dump_editor.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svnrdump/dump_editor.c?rev=986567&r1=986566&r2=986567&view=diff
==============================================================================
--- subversion/trunk/subversion/svnrdump/dump_editor.c (original)
+++ subversion/trunk/subversion/svnrdump/dump_editor.c Wed Aug 18 05:34:27 2010
@@ -507,8 +507,8 @@ open_file(const char *path,
      record the same for this one. */
   if (pb && ARE_VALID_COPY_ARGS(pb->copyfrom_path, pb->copyfrom_rev))
     {
-      copyfrom_path = svn_relpath_join(svn_relpath_basename(path, pool),
-                                       pb->copyfrom_path, pool);
+      copyfrom_path = svn_relpath_join(pb->copyfrom_path,
+                                       svn_relpath_basename(path, pool), pool);
       copyfrom_rev = pb->copyfrom_rev;
     }