You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by iv...@apache.org on 2010/01/26 10:44:35 UTC

svn commit: r903145 - /subversion/trunk/subversion/libsvn_repos/repos.c

Author: ivan
Date: Tue Jan 26 09:44:35 2010
New Revision: 903145

URL: http://svn.apache.org/viewvc?rev=903145&view=rev
Log:
* subversion/libsvn_repos/repos.c
  (svn_repos_create): Use local style path in the error message.

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

Modified: subversion/trunk/subversion/libsvn_repos/repos.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_repos/repos.c?rev=903145&r1=903144&r2=903145&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_repos/repos.c (original)
+++ subversion/trunk/subversion/libsvn_repos/repos.c Tue Jan 26 09:44:35 2010
@@ -1369,7 +1369,9 @@
   if (root_path != NULL)
     return svn_error_createf(SVN_ERR_REPOS_BAD_ARGS, NULL, _("'%s' is a "
                               "subdirectory of an existing repository rooted "
-                              "at '%s'"), path, root_path);
+                              "at '%s'"),
+                              svn_dirent_local_style(path, pool),
+                              svn_dirent_local_style(root_path, pool));
 
   /* Create the various files and subdirectories for the repository. */
   SVN_ERR_W(create_repos_structure(repos, path, fs_config, pool),