]> granicus.if.org Git - curl/commitdiff
http-proxy: removed unused argument in CURL_DISABLE_PROXY case
authorDan Fandrich <dan@coneharvesters.com>
Thu, 27 Apr 2017 09:42:04 +0000 (11:42 +0200)
committerDan Fandrich <dan@coneharvesters.com>
Thu, 27 Apr 2017 09:42:04 +0000 (11:42 +0200)
Missed in commit 55c3c02e

lib/http_proxy.h

index 81b7b8b8b69e4d776c9126cb23ac41b986ce951a..cbb1ab42121e2dbcd351df8cf4acf51d26ad4d0b 100644 (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