mirror of
https://github.com/curl/curl.git
synced 2026-08-25 08:13:31 +03:00
tidy-up: make 'CA' uppercase, where missing
```sh git grep -w ca | grep -v -E -i 'ca[;"=/()%_.-]' | grep -v -E -i '[*$"=/()%_.-]ca' ``` Closes #22135
This commit is contained in:
parent
5735540835
commit
b0d0f16d20
14 changed files with 25 additions and 25 deletions
|
|
@ -34,7 +34,7 @@
|
|||
/* Global configuration parameters: normally generated by autoconf. */
|
||||
/* ---------------------------------------------------------------- */
|
||||
|
||||
/* Location of default ca bundle */
|
||||
/* Location of default CA bundle */
|
||||
/* Use the system keyring as the default CA bundle. */
|
||||
#define CURL_CA_BUNDLE "/QIBM/UserData/ICSS/Cert/Server/DEFAULT.KDB"
|
||||
|
||||
|
|
|
|||
|
|
@ -22,13 +22,13 @@
|
|||
*
|
||||
***************************************************************************/
|
||||
|
||||
/* Location of default ca bundle */
|
||||
/* Location of default CA bundle */
|
||||
#cmakedefine CURL_CA_BUNDLE "${CURL_CA_BUNDLE}"
|
||||
|
||||
/* define "1" to use built-in ca store of TLS backend */
|
||||
/* define "1" to use built-in CA store of TLS backend */
|
||||
#cmakedefine CURL_CA_FALLBACK 1
|
||||
|
||||
/* Location of default ca path */
|
||||
/* Location of default CA path */
|
||||
#cmakedefine CURL_CA_PATH "${CURL_CA_PATH}"
|
||||
|
||||
/* Default SSL backend */
|
||||
|
|
|
|||
|
|
@ -241,7 +241,7 @@ static void ssl_easy_config_compl_options(struct Curl_peer *origin,
|
|||
uint8_t options = sslc->primary.ssl_options;
|
||||
/* If set via CURLOPT_(PROXY_)SSL_OPTIONS, we definitely use it.
|
||||
* If not, we switch it on for supported backends if no custom
|
||||
* ca settings exist. */
|
||||
* CA settings exist. */
|
||||
sslc->native_ca_store = !!(options & CURLSSLOPT_NATIVE_CA);
|
||||
sslc->enable_beast = !!(options & CURLSSLOPT_ALLOW_BEAST);
|
||||
sslc->no_partialchain = !!(options & CURLSSLOPT_NO_PARTIALCHAIN);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue