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:
Viktor Szakats 2026-06-22 15:52:23 +02:00
parent 5735540835
commit b0d0f16d20
No known key found for this signature in database
14 changed files with 25 additions and 25 deletions

View file

@ -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"

View file

@ -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 */

View file

@ -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);