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 2011/10/04 21:08:36 UTC

svn commit: r1178910 - /subversion/trunk/subversion/libsvn_client/cleanup.c

Author: rhuijben
Date: Tue Oct  4 19:08:35 2011
New Revision: 1178910

URL: http://svn.apache.org/viewvc?rev=1178910&view=rev
Log:
* subversion/libsvn_client/cleanup.c
  (svn_client_upgrade): Pass FALSE for svn_wc_parse_externals_description3's
    canonicalize_url argument to make sure it doesn't munge relative urls.
    This fixes upgrade_tests.py 2 (upgrade with externals) on Windows.

Modified:
    subversion/trunk/subversion/libsvn_client/cleanup.c

Modified: subversion/trunk/subversion/libsvn_client/cleanup.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/cleanup.c?rev=1178910&r1=1178909&r2=1178910&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/cleanup.c (original)
+++ subversion/trunk/subversion/libsvn_client/cleanup.c Tue Oct  4 19:08:35 2011
@@ -187,7 +187,7 @@ svn_client_upgrade(const char *path,
       if (!err)
         err = svn_wc_parse_externals_description3(
                   &externals_p, svn_dirent_dirname(path, iterpool),
-                  external_desc->data, TRUE, iterpool);
+                  external_desc->data, FALSE, iterpool);
       if (err)
         {
           svn_wc_notify_t *notify =