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/09/06 12:38:27 UTC

svn commit: r1520532 - /subversion/trunk/subversion/libsvn_wc/old-and-busted.c

Author: rhuijben
Date: Fri Sep  6 10:38:27 2013
New Revision: 1520532

URL: http://svn.apache.org/r1520532
Log:
* subversion/libsvn_wc/old-and-busted.c
  (atts_to_entry): Following up on r1520529, fix variable reference.

Modified:
    subversion/trunk/subversion/libsvn_wc/old-and-busted.c

Modified: subversion/trunk/subversion/libsvn_wc/old-and-busted.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/old-and-busted.c?rev=1520532&r1=1520531&r2=1520532&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/old-and-busted.c (original)
+++ subversion/trunk/subversion/libsvn_wc/old-and-busted.c Fri Sep  6 10:38:27 2013
@@ -819,7 +819,7 @@ atts_to_entry(svn_wc_entry_t **new_entry
      ### not used by loggy; no need to set MODIFY_FLAGS  */
   entry->repos = extract_string(atts, ENTRIES_ATTR_REPOS, pool);
   if (entry->repos)
-    entry->repos = svn_uri_canonicalize(entry->url, pool);
+    entry->repos = svn_uri_canonicalize(entry->repos, pool);
 
   if (entry->url && entry->repos
       && !svn_uri__is_ancestor(entry->repos, entry->url))