1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

Julian Noble pointed out that capath is indeed working fine on Windows

these days since the c_rehash tool is written (fixed) to do the proper
action even on file systems that don't support symlinks.
This commit is contained in:
Daniel Stenberg 2003-02-03 21:36:52 +00:00
parent 32cef52f0d
commit 21c16f923c
2 changed files with 5 additions and 6 deletions

View File

@ -220,11 +220,10 @@ be in PEM format.
If this option is used several times, the last one will be used. If this option is used several times, the last one will be used.
.IP "--capath <CA certificate directory>" .IP "--capath <CA certificate directory>"
(HTTPS) Tells curl to use the specified certificate directory to verify the (HTTPS) Tells curl to use the specified certificate directory to verify the
peer. The certificates must be in PEM format, and the directory must have been peer. The certificates must be in PEM format, and the directory must have been
processed using the c_rehash utility supplied with openssl. Certificate directories processed using the c_rehash utility supplied with openssl. Using --capath can
are not supported under Windows (because c_rehash uses symbolink links to allow curl to make https connections much more efficiently than using --cacert
create them). Using --capath can allow curl to make https connections much if the --cacert file contains many CA certificates.
more efficiently than using --cacert if the --cacert file contains many CA certificates.
If this option is used several times, the last one will be used. If this option is used several times, the last one will be used.
.IP "-f/--fail" .IP "-f/--fail"

View File

@ -358,7 +358,7 @@ static void help(void)
puts(" --engine <eng> Specifies the crypto engine to use (HTTPS)\n" puts(" --engine <eng> Specifies the crypto engine to use (HTTPS)\n"
" --cacert <file> CA certifciate to verify peer against (SSL)\n" " --cacert <file> CA certifciate to verify peer against (SSL)\n"
" --capath <directory> CA directory (made using c_rehash) to verify\n" " --capath <directory> CA directory (made using c_rehash) to verify\n"
" peer against (SSL, NOT Windows)\n" " peer against (SSL)\n"
" --ciphers <list> What SSL ciphers to use (SSL)\n" " --ciphers <list> What SSL ciphers to use (SSL)\n"
" --compressed Request a compressed response (using deflate)."); " --compressed Request a compressed response (using deflate).");
puts(" --connect-timeout <seconds> Maximum time allowed for connection\n" puts(" --connect-timeout <seconds> Maximum time allowed for connection\n"