diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-02-04 15:04:18 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-02-04 15:05:23 +0100 |
commit | be6ecb3a0726212cd7b746a0f183473673eb6936 (patch) | |
tree | 9d03611f84d2f8651efc712320ffa047f01ce08b /lib/setopt.c | |
parent | 20faeee6f36b5fcdf20b6c4684cc9dc4a62381a4 (diff) | |
download | curl-bagder/no-http-mqtt.tar.gz |
urldata: fix build without HTTP and MQTTbagder/no-http-mqtt
Reported-by: Joseph Chen
Fixes #6562
Closes #6563
Diffstat (limited to 'lib/setopt.c')
-rw-r--r-- | lib/setopt.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/setopt.c b/lib/setopt.c index ce73a34a7..d4a081681 100644 --- a/lib/setopt.c +++ b/lib/setopt.c @@ -653,8 +653,6 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param) data->set.httpauth = CURLAUTH_AWS_SIGV4; break; -#endif /* CURL_DISABLE_HTTP */ - case CURLOPT_MIMEPOST: /* * Set to make us do MIME/form POST @@ -695,7 +693,6 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, va_list param) data->set.headers = va_arg(param, struct curl_slist *); break; -#ifndef CURL_DISABLE_HTTP #ifndef CURL_DISABLE_PROXY case CURLOPT_PROXYHEADER: /* |