Author: cmpilato
Date: Thu Feb 17 16:28:01 2011
New Revision: 1071679
URL: http://svn.apache.org/viewvc?rev=1071679&view=rev
Log:
Follow-up to r1071025, ensuring the repository path supplied to
'svnadmin' is convered to internal style before it's used.
* subversion/svnadmin/main.c
(main): Pass 'repos_path' through svn_dirent_internal_style().
Modified:
subversion/trunk/subversion/svnadmin/main.c
Modified: subversion/trunk/subversion/svnadmin/main.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/svnadmin/main.c?rev=1071679&r1=1071678&r2=1071679&view=diff
==============================================================================
--- subversion/trunk/subversion/svnadmin/main.c (original)
+++ subversion/trunk/subversion/svnadmin/main.c Thu Feb 17 16:28:01 2011
@@ -1875,7 +1875,7 @@ main(int argc, const char *argv[])
return svn_cmdline_handle_exit_error(err, pool, "svnadmin: ");
}
- opt_state.repository_path = repos_path;
+ opt_state.repository_path = svn_dirent_internal_style(repos_path, pool);
}
/* Check that the subcommand wasn't passed any inappropriate options. */