]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
CURLOPT_HTTPPOST.3: bolden the deprecation notice
authorJay Satiro <raysatiro@yahoo.com>
Mon, 3 Oct 2022 18:00:19 +0000 (14:00 -0400)
committerJay Satiro <raysatiro@yahoo.com>
Wed, 5 Oct 2022 22:41:55 +0000 (18:41 -0400)
Ref: https://github.com/curl/curl/pull/9621

Closes https://github.com/curl/curl/pull/9637

docs/libcurl/curl_formadd.3
docs/libcurl/opts/CURLOPT_HTTPPOST.3

index 92135bf818f352121d343bdb9f023f4676fae9ec..04e10b3f2a9c0aef0c1c7c14bed9e4a9c949905e 100644 (file)
@@ -32,7 +32,7 @@ CURLFORMcode curl_formadd(struct curl_httppost **firstitem,
                           struct curl_httppost **lastitem, ...);
 .fi
 .SH DESCRIPTION
-This function is deprecated. Do not use. See \fIcurl_mime_init(3)\fP instead.
+\fBThis function is deprecated.\fP Use \fIcurl_mime_init(3)\fP instead.
 
 curl_formadd() is used to append sections when building a multipart form
 post. Append one section at a time until you have added all the sections you
index d9a7053363edb939b08bb284545fdd818a8326e8..3941664eb6e943ae3fd1f40b93645a122c6f9fa0 100644 (file)
@@ -32,6 +32,8 @@ CURLOPT_HTTPPOST \- multipart formpost content
 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_HTTPPOST,
                           struct curl_httppost *formpost);
 .SH DESCRIPTION
+\fBThis option is deprecated.\fP Use \fICURLOPT_MIMEPOST(3)\fP instead.
+
 Tells libcurl you want a \fBmultipart/formdata\fP HTTP POST to be made and you
 instruct what data to pass on to the server in the \fIformpost\fP argument.
 Pass a pointer to a linked list of \fIcurl_httppost\fP structs as parameter.
@@ -44,9 +46,6 @@ You can disable this header with \fICURLOPT_HTTPHEADER(3)\fP.
 
 When setting \fICURLOPT_HTTPPOST(3)\fP, it will automatically set
 \fICURLOPT_NOBODY(3)\fP to 0.
-
-This option is deprecated! Do not use it. Use \fICURLOPT_MIMEPOST(3)\fP
-instead after having prepared mime data.
 .SH DEFAULT
 NULL
 .SH PROTOCOLS