Revert "Update to 7.40.1"
[platform/upstream/curl.git] / docs / libcurl / opts / CURLOPT_HTTPGET.3
index c14c387..1e3e566 100644 (file)
@@ -37,20 +37,9 @@ When setting \fICURLOPT_HTTPGET(3)\fP to 1, it will automatically set
 .SH DEFAULT
 0
 .SH PROTOCOLS
-HTTP(S)
+HTTP
 .SH EXAMPLE
-.nf
-curl = curl_easy_init();
-if(curl) {
-  curl_easy_setopt(curl, CURLOPT_URL, "http://example.com");
-
-  /* use a GET to fetch this */ 
-  curl_easy_setopt(curl, CURLOPT_HTTPGET, 1L);
-
-  /* Perform the request */ 
-  curl_easy_perform(curl);
-}
-.fi
+TODO
 .SH AVAILABILITY
 Along with HTTP
 .SH RETURN VALUE