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

@ -155,7 +155,7 @@ int main(void)
curl_easy_setopt(curl, CURLOPT_CAINFO, NULL);
curl_easy_setopt(curl, CURLOPT_CAPATH, NULL);
/* first try: retrieve page without ca certificates -> should fail
/* first try: retrieve page without CA certificates -> should fail
* unless libcurl was built --with-ca-fallback enabled at build-time
*/
result = curl_easy_perform(curl);