You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2013/07/08 14:12:50 UTC

svn commit: r1500683 - /subversion/trunk/subversion/svnauth/svnauth.c

Author: stsp
Date: Mon Jul  8 12:12:49 2013
New Revision: 1500683

URL: http://svn.apache.org/r1500683
Log:
* subversion/svnauth/svnauth.c
  (subcommand_help): Use local style for paths in error messages.

Found by: danielsh

Modified:
    subversion/trunk/subversion/svnauth/svnauth.c

Modified: subversion/trunk/subversion/svnauth/svnauth.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svnauth/svnauth.c?rev=1500683&r1=1500682&r2=1500683&view=diff
==============================================================================
--- subversion/trunk/subversion/svnauth/svnauth.c (original)
+++ subversion/trunk/subversion/svnauth/svnauth.c Mon Jul  8 12:12:49 2013
@@ -122,10 +122,10 @@ subcommand_help(apr_getopt_t *os, void *
        */
 #if (defined(WIN32) && !defined(__MINGW32__))
       footer = apr_psprintf(pool, _("%s  Wincrypt cache in %s\n"),
-                            footer, config_path);
+                            footer, svn_dirent_local_style(config_path, pool));
 #elif !defined(SVN_DISABLE_PLAINTEXT_PASSWORD_STORAGE)
       footer = apr_psprintf(pool, _("%s  Plaintext cache in %s\n"),
-                            footer, config_path);
+                            footer, svn_dirent_local_style(config_path, pool));
 #endif
 #ifdef SVN_HAVE_GNOME_KEYRING
       footer = apr_pstrcat(pool, footer, "  Gnome Keyring\n", NULL);