summaryrefslogtreecommitdiff
path: root/docs/libcurl/curl_easy_perform.3
diff options
context:
space:
mode:
authorAlessandro Ghedini <ghedo@debian.org>2020-12-31 11:43:56 +0100
committerAlessandro Ghedini <ghedo@debian.org>2020-12-31 11:43:56 +0100
commit50a389ade96c0e69ed0ec9d20d075e6d8641a510 (patch)
tree1efdc1536fccd8a6fc8830b0866c2826ce744780 /docs/libcurl/curl_easy_perform.3
parentfea0dcbfd05f0524ea51e68ebe570fd9b531ab95 (diff)
New upstream version 7.74.0
Diffstat (limited to 'docs/libcurl/curl_easy_perform.3')
-rw-r--r--docs/libcurl/curl_easy_perform.36
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/libcurl/curl_easy_perform.3 b/docs/libcurl/curl_easy_perform.3
index b0574f45..a6a3b315 100644
--- a/docs/libcurl/curl_easy_perform.3
+++ b/docs/libcurl/curl_easy_perform.3
@@ -9,7 +9,7 @@
.\" *
.\" * This software is licensed as described in the file COPYING, which
.\" * you should have received as part of this distribution. The terms
-.\" * are also available at https://curl.haxx.se/docs/copyright.html.
+.\" * are also available at https://curl.se/docs/copyright.html.
.\" *
.\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
.\" * copies of the Software, and permit persons to whom the Software is
@@ -19,7 +19,7 @@
.\" * KIND, either express or implied.
.\" *
.\" **************************************************************************
-.TH curl_easy_perform 3 "March 23, 2020" "libcurl 7.72.0" "libcurl Manual"
+.TH curl_easy_perform 3 "November 04, 2020" "libcurl 7.74.0" "libcurl Manual"
.SH NAME
curl_easy_perform - perform a blocking file transfer
@@ -64,7 +64,7 @@ the error buffer when non-zero is returned.
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);
}