Author: stsp
Date: Fri Nov 18 14:21:09 2011
New Revision: 1203659
URL: http://svn.apache.org/viewvc?rev=1203659&view=rev
Log:
Follow-up to 1203653:
* subversion/mod_dav_svn/mod_dav_svn.c
(merge_dir_config): Use svn__urlpath instead of svn__fspath for URL-paths.
This is a cosmetic change only since svn__urlpath_skip_ancestor() is
a macro which expands to svn__fspath_skip_ancestor().
Modified:
subversion/trunk/subversion/mod_dav_svn/mod_dav_svn.c
Modified: subversion/trunk/subversion/mod_dav_svn/mod_dav_svn.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/mod_dav_svn/mod_dav_svn.c?rev=1203659&r1=1203658&r2=1203659&view=diff
==============================================================================
--- subversion/trunk/subversion/mod_dav_svn/mod_dav_svn.c (original)
+++ subversion/trunk/subversion/mod_dav_svn/mod_dav_svn.c Fri Nov 18 14:21:09
2011
@@ -222,7 +222,7 @@ merge_dir_config(apr_pool_t *p, void *ba
"mod_dav_svn: nested Location '%s' hinders access to '%s' "
"in SVNPath Location '%s'",
child->root_dir,
- svn_fspath__skip_ancestor(parent->root_dir, child->root_dir),
+ svn_urlpath__skip_ancestor(parent->root_dir, child->root_dir),
parent->root_dir);
return newconf;