man pages: switch to https://example.com URLs

Since HTTPS is "the new normal", this update changes a lot of man page
examples to use https://example.com instead of the previous "http://..."

Closes #5969
This commit is contained in:
Daniel Stenberg 2020-09-16 23:04:07 +02:00
parent cd048aaa28
commit 83cc966708
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
125 changed files with 129 additions and 129 deletions

View file

@ -43,7 +43,7 @@ HTTP
.nf
CURL *curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_URL, "http://example.com");
curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
/* wait 3 seconds for 100-continue */
curl_easy_setopt(curl, CURLOPT_EXPECT_100_TIMEOUT_MS, 3000L);