> -----Original Message----- > From: s...@apache.org [mailto:s...@apache.org] > Sent: woensdag 26 februari 2014 16:48 > To: comm...@subversion.apache.org > Subject: svn commit: r1572105 - in /subversion/trunk/subversion: svn/auth- > cmd.c svn/cl.h svn/svn.c tests/cmdline/getopt_tests_data/svn--help_stdout > tests/cmdline/getopt_tests_data/svn_help_stdout > > Author: stsp > Date: Wed Feb 26 15:48:06 2014 > New Revision: 1572105 > > URL: http://svn.apache.org/r1572105 > Log: > Introduce 'svn auth', a subcommand for managing the authentication cache > which supersedes the 'svnauth' tool. Currently, cached credentials can be > listed and removed. In the future, this subcommand could also provide a > mechanism to add credentials to the cache.
Currently 'svn auth' is broken for ssl certificates on Windows, because you use (a Serf api which uses) openssl without properly initializing openssl first. This serf api, further uses stdio to access the certificate file, which doesn't work on Windows without other workarounds. The problem in Serf is fixed in r2314, but this will bump the required Serf version for 1.9.0 to a currently not released serf version, and I'm not sure if that is what we want here. Bert