summaryrefslogtreecommitdiff
path: root/docs/libcurl/curl_easy_cleanup.3
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-09-16 23:04:07 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-09-16 23:04:07 +0200
commit9e078211cedcce94288d5ca40c95708c2f95685e (patch)
tree5c3b619e5ad138c58eb41a3866430a618afd2b63 /docs/libcurl/curl_easy_cleanup.3
parent1556b99f1a4f6627c442980d4d4f41e61008045a (diff)
downloadcurl-9e078211cedcce94288d5ca40c95708c2f95685e.tar.gz
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://..."
Diffstat (limited to 'docs/libcurl/curl_easy_cleanup.3')
-rw-r--r--docs/libcurl/curl_easy_cleanup.32
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/curl_easy_cleanup.3 b/docs/libcurl/curl_easy_cleanup.3
index 626d98c51..b313bb0a3 100644
--- a/docs/libcurl/curl_easy_cleanup.3
+++ b/docs/libcurl/curl_easy_cleanup.3
@@ -60,7 +60,7 @@ None
CURL *curl = curl_easy_init();
if(curl) {
CURLcode res;
- curl_easy_setopt(curl, CURLOPT_URL, "http://example.com");
+ curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
}