]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
doc: curl_mime_init() strong easy handle binding has been relaxed in 7.87.0
authorPatrick Monnerat <patrick@monnerat.net>
Sat, 25 Mar 2023 14:22:57 +0000 (15:22 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 26 Mar 2023 14:39:58 +0000 (16:39 +0200)
Reported-by: Chloe Kudryavtsev
Fixes #10834
Closes #10835

docs/libcurl/curl_mime_init.3

index dc7f7b1f1f449142fae4c15280b2eb1393818a62..de2c12835df6b430f36d40de7d314d437242ae20 100644 (file)
@@ -31,14 +31,14 @@ curl_mime_init - create a mime handle
 curl_mime *curl_mime_init(CURL *easy_handle);
 .fi
 .SH DESCRIPTION
-\fIcurl_mime_init(3)\fP creates a handle to a new empty mime structure,
+\fIcurl_mime_init(3)\fP creates a handle to a new empty mime structure.
 This mime structure can be subsequently filled using the mime API, then
 attached to some easy handle using option \fICURLOPT_MIMEPOST(3)\fP within
 a \fIcurl_easy_setopt(3)\fP call or added as a multipart in another mime
 handle's part using \fIcurl_mime_subparts(3)\fP.
 
 \fIeasy_handle\fP is used for part separator randomization and error
-reporting. It does not need to be the final target handle.
+reporting. Since 7.87.0, it does not need to be the final target handle.
 
 Using a mime handle is the recommended way to post an HTTP form, format and
 send a multi-part email with SMTP or upload such an email to an IMAP server.