On Wed, Jul 03, 2013 at 08:02:02PM -0000, [email protected] wrote: > + SVN_ERR(svn_config_get_user_config_path(&config_path, > + opt_state->config_dir, NULL, > + pool)); > + footer = _("Available authentication credential caches:\n"); > + > + /* > + * ### There is no API to query available providers at run time. > + */ > +#if (defined(WIN32) && !defined(__MINGW32__)) > + footer = apr_psprintf(pool, _("%s Wincrypt cache in %s\n"), > + footer, config_path); > +#elif !defined(SVN_DISABLE_PLAINTEXT_PASSWORD_STORAGE) > + footer = apr_psprintf(pool, _("%s Plaintext cache in %s\n"), > + footer, config_path);
Don't you need svn_dirent_local_style() here?

