docs: update curl man page references

Detected by the manpage-syntax update

Closes #11963
This commit is contained in:
Daniel Stenberg 2023-09-27 11:36:03 +02:00
parent 2b8937ce3a
commit f11a5d2c5a
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
29 changed files with 75 additions and 74 deletions

View file

@ -624,7 +624,7 @@ becomes:
curl_mime_headers(part, headers, FALSE);
.fi
Setting the last \fIcurl_mime_headers\fP argument to TRUE would have caused
Setting the last \fIcurl_mime_headers(3)\fP argument to TRUE would have caused
the headers to be automatically released upon destroyed the multi-part, thus
saving a clean-up call to \fIcurl_slist_free_all(3)\fP.
@ -641,10 +641,10 @@ becomes:
curl_mime_data_cb(part, (curl_off_t) -1, fread, fseek, NULL, stdin);
.fi
\fIcurl_mime_name\fP always copies the field name. The special file name "-"
is not supported by \fIcurl_mime_file\fP: to read an open file, use a callback
source using fread(). The transfer is be chunk-encoded since the data size is
unknown.
\fIcurl_mime_name(3)\fP always copies the field name. The special file name
"-" is not supported by \fIcurl_mime_filename(3)\fP: to read an open file, use
a callback source using fread(). The transfer is be chunk-encoded since the
data size is unknown.
.nf
curl_formadd(&post, &last,
@ -686,7 +686,7 @@ becomes:
curl_mime_type(part, "application/zip");
.fi
\fICURLOPT_READFUNCTION\fP callback is not used: it is replace by directly
\fICURLOPT_READFUNCTION(3)\fP callback is not used: it is replace by directly
setting the part source data from the callback read function.
.nf
@ -705,7 +705,7 @@ becomes:
curl_mime_filename(part, "memfile.bin");
.fi
\fIcurl_mime_data\fP always copies the initial data: data buffer is thus
\fIcurl_mime_data(3)\fP always copies the initial data: data buffer is thus
free for immediate reuse.
.nf
@ -722,8 +722,9 @@ becomes:
curl_mime_filename(part, NULL);
.fi
Use of \fIcurl_mime_filedata\fP sets the remote file name as a side effect: it
is therefore necessary to clear it for \fICURLFORM_FILECONTENT\fP emulation.
Use of \fIcurl_mime_filedata(3)\fP sets the remote file name as a side effect:
it is therefore necessary to clear it for \fICURLFORM_FILECONTENT\fP
emulation.
.SH "Showing Progress"