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 2011/10/24 18:49:31 UTC

svn commit: r1188222 - /subversion/trunk/subversion/libsvn_repos/log.c

Author: julianfoad
Date: Mon Oct 24 16:49:31 2011
New Revision: 1188222

URL: http://svn.apache.org/viewvc?rev=1188222&view=rev
Log:
* subversion/libsvn_repos/log.c
  (get_combined_mergeinfo_changes): Fix incorrect usage of svn_dirent_*()
    for paths relative to the repository root: use svn_fspath__*().

Modified:
    subversion/trunk/subversion/libsvn_repos/log.c

Modified: subversion/trunk/subversion/libsvn_repos/log.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_repos/log.c?rev=1188222&r1=1188221&r2=1188222&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_repos/log.c (original)
+++ subversion/trunk/subversion/libsvn_repos/log.c Mon Oct 24 16:49:31 2011
@@ -885,7 +885,7 @@ get_combined_mergeinfo_changes(svn_merge
       for (i = 0; i < paths->nelts; i++)
         {
           const char *path = APR_ARRAY_IDX(paths, i, const char *);
-          if (! svn_dirent_is_ancestor(path, changed_path))
+          if (! svn_fspath__is_ancestor(path, changed_path))
             continue;
           svn_pool_clear(iterpool);
           deleted = apr_hash_get(deleted_mergeinfo_catalog, key, klen);