diff options
author | Okhin Vasilij <OkhinVI@gmail.com> | 2016-11-21 17:01:25 +0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-11-24 23:41:45 +0100 |
commit | c6da05a5ec0c5250df077e42647c498f8ae38e8d (patch) | |
tree | 9e14b903397afb8f2bc8d0385aa51ef90e8cb84f /lib/http_proxy.c | |
parent | 49765cd75cdd40ceecb125ac893051be90977018 (diff) | |
download | curl-c6da05a5ec0c5250df077e42647c498f8ae38e8d.tar.gz |
HTTPS-proxy: fixed mbedtls and polishing
Diffstat (limited to 'lib/http_proxy.c')
-rw-r--r-- | lib/http_proxy.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/http_proxy.c b/lib/http_proxy.c index cd4cac06d..bbe2e8eb1 100644 --- a/lib/http_proxy.c +++ b/lib/http_proxy.c @@ -63,6 +63,8 @@ static CURLcode https_proxy_connect(struct connectdata *conn, int sockindex) } return result; #else + (void) conn; + (void) sockindex; return CURLE_NOT_BUILT_IN; #endif } |