http-proxy: removed unused argument in CURL_DISABLE_PROXY case

Missed in commit 55c3c02e
This commit is contained in:
Dan Fandrich 2017-04-27 11:42:04 +02:00
parent 7543f28ad2
commit 63503a969f
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn,
CURLcode Curl_proxy_connect(struct connectdata *conn, int sockindex);
#else
#define Curl_proxyCONNECT(x,y,z,w,v) CURLE_NOT_BUILT_IN
#define Curl_proxyCONNECT(x,y,z,w) CURLE_NOT_BUILT_IN
#define Curl_proxy_connect(x,y) CURLE_OK
#endif