diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-05-05 17:08:21 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-05-13 08:17:09 +0200 |
commit | b95456f4e26b602a027433f06cbff33e7afa3317 (patch) | |
tree | e7100b6f97b6196fd96ebf5ce7412908e43d7ab6 /lib/http.c | |
parent | 0e2208ada6e4c3edeb01ce242e3e2ca06084680b (diff) | |
download | curl-b95456f4e26b602a027433f06cbff33e7afa3317.tar.gz |
mime: acknowledge CURL_DISABLE_MIME
Diffstat (limited to 'lib/http.c')
-rw-r--r-- | lib/http.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/http.c b/lib/http.c index b09dc648a..328b17ee1 100644 --- a/lib/http.c +++ b/lib/http.c @@ -2174,6 +2174,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done) http->sendit = NULL; } +#ifndef CURL_DISABLE_MIME if(http->sendit) { const char *cthdr = Curl_checkheaders(conn, "Content-Type"); @@ -2198,6 +2199,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done) return result; http->postsize = Curl_mime_size(http->sendit); } +#endif ptr = Curl_checkheaders(conn, "Transfer-Encoding"); if(ptr) { @@ -2766,6 +2768,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done) return result; } +#ifndef CURL_DISABLE_MIME /* Output mime-generated headers. */ { struct curl_slist *hdr; @@ -2776,6 +2779,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done) return result; } } +#endif /* For really small posts we don't use Expect: headers at all, and for the somewhat bigger ones we allow the app to disable it. Just make |