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/05/22 11:55:37 UTC

svn commit: r1485138 - /subversion/trunk/subversion/libsvn_ra_local/split_url.c

Author: rhuijben
Date: Wed May 22 09:55:37 2013
New Revision: 1485138

URL: http://svn.apache.org/r1485138
Log:
* subversion/libsvn_ra_local/split_url.c
  (svn_ra_local__split_URL): Revert accidental argument rename that was part
    of r1485127.

Modified:
    subversion/trunk/subversion/libsvn_ra_local/split_url.c

Modified: subversion/trunk/subversion/libsvn_ra_local/split_url.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_local/split_url.c?rev=1485138&r1=1485137&r2=1485138&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_local/split_url.c (original)
+++ subversion/trunk/subversion/libsvn_ra_local/split_url.c Wed May 22 09:55:37 2013
@@ -30,7 +30,7 @@
 
 svn_error_t *
 svn_ra_local__split_URL(svn_repos_t **repos,
-                        const char **repos_url,
+                        const char **repos_root_url,
                         const char **fs_path,
                         const char *URL,
                         apr_pool_t *pool)
@@ -88,7 +88,7 @@ svn_ra_local__split_URL(svn_repos_t **re
   svn_path_remove_components(urlbuf,
                              svn_path_component_count(repos_dirent)
                              - svn_path_component_count(repos_root_dirent));
-  *repos_url = urlbuf->data;
+  *repos_root_url = urlbuf->data;
 
   /* Configure hook script environment variables. */
   SVN_ERR(svn_repos_hooks_setenv(*repos, NULL, pool));