diff options
author | Colin Hogben <curl@pythontech.co.uk> | 2011-12-14 13:30:54 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-12-15 17:27:38 +0100 |
commit | 612a61b267a95d3ac1dddc2f579888c7a595ddbd (patch) | |
tree | 47b87eb4f023e112e559aeff58d35ed022afc365 /docs | |
parent | cd4cd668396d501c91800bb8b0cb4577afa3e512 (diff) |
Correct default upload mimetype in manual
The default content-type for file uploads is application/octet-stream,
not text/plain as stated in the MANUAL.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/MANUAL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/MANUAL b/docs/MANUAL index ce617138f..da073104c 100644 --- a/docs/MANUAL +++ b/docs/MANUAL @@ -328,7 +328,7 @@ POST (HTTP) If the content-type is not specified, curl will try to guess from the file extension (it only knows a few), or use the previously specified type (from an earlier file if several files are specified in a list) or else it will - using the default type 'text/plain'. + use the default type 'application/octet-stream'. Emulate a fill-in form with -F. Let's say you fill in three fields in a form. One field is a file name which to post, one field is your name and one |