mirror of
https://github.com/curl/curl.git
synced 2026-08-25 01:03:31 +03:00
schannel: stop calling it "winssl"
Stick to "Schannel" everywhere. The configure option --with-winssl is kept to allow existing builds to work but --with-schannel is added as an alias. Closes #3504
This commit is contained in:
parent
6f61933adf
commit
180501cb02
17 changed files with 62 additions and 57 deletions
|
|
@ -5,7 +5,7 @@
|
|||
* | (__| |_| | _ <| |___
|
||||
* \___|\___/|_| \_\_____|
|
||||
*
|
||||
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
* Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
*
|
||||
* This software is licensed as described in the file COPYING, which
|
||||
* you should have received as part of this distribution. The terms
|
||||
|
|
@ -646,9 +646,9 @@ CURLcode FindWin32CACert(struct OperationConfig *config,
|
|||
|
||||
/* Search and set cert file only if libcurl supports SSL.
|
||||
*
|
||||
* If Schannel (WinSSL) is the selected SSL backend then these locations
|
||||
* are ignored. We allow setting CA location for schannel only when
|
||||
* explicitly specified by the user via CURLOPT_CAINFO / --cacert.
|
||||
* If Schannel is the selected SSL backend then these locations are
|
||||
* ignored. We allow setting CA location for schannel only when explicitly
|
||||
* specified by the user via CURLOPT_CAINFO / --cacert.
|
||||
*/
|
||||
if((curlinfo->features & CURL_VERSION_SSL) &&
|
||||
backend != CURLSSLBACKEND_SCHANNEL) {
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* | (__| |_| | _ <| |___
|
||||
* \___|\___/|_| \_\_____|
|
||||
*
|
||||
* Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
* Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
*
|
||||
* This software is licensed as described in the file COPYING, which
|
||||
* you should have received as part of this distribution. The terms
|
||||
|
|
@ -413,7 +413,7 @@ static const struct helptxt helptext[] = {
|
|||
{" --ssl-allow-beast",
|
||||
"Allow security flaw to improve interop"},
|
||||
{" --ssl-no-revoke",
|
||||
"Disable cert revocation checks (WinSSL)"},
|
||||
"Disable cert revocation checks (Schannel)"},
|
||||
{" --ssl-reqd",
|
||||
"Require SSL/TLS"},
|
||||
{"-2, --sslv2",
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
* | (__| |_| | _ <| |___
|
||||
* \___|\___/|_| \_\_____|
|
||||
*
|
||||
* Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
* Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
||||
*
|
||||
* This software is licensed as described in the file COPYING, which
|
||||
* you should have received as part of this distribution. The terms
|
||||
|
|
@ -258,9 +258,9 @@ static CURLcode operate_do(struct GlobalConfig *global,
|
|||
* no environment-specified filename is found then check for CA bundle
|
||||
* default filename curl-ca-bundle.crt in the user's PATH.
|
||||
*
|
||||
* If Schannel (WinSSL) is the selected SSL backend then these locations
|
||||
* are ignored. We allow setting CA location for schannel only when
|
||||
* explicitly specified by the user via CURLOPT_CAINFO / --cacert.
|
||||
* If Schannel is the selected SSL backend then these locations are
|
||||
* ignored. We allow setting CA location for schannel only when explicitly
|
||||
* specified by the user via CURLOPT_CAINFO / --cacert.
|
||||
*/
|
||||
if(tls_backend_info->backend != CURLSSLBACKEND_SCHANNEL) {
|
||||
char *env;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue