summaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-04-26 00:34:22 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-04-26 00:34:22 +0200
commit55c3c02e59d1daf31ec2097f93b8139ddb3fdeb6 (patch)
tree47306104b370502648629d9db757e89d931fad1e /lib/ftp.c
parentfb67c977b98d8a7e1fcbed523fe6ce0c06ec1ac8 (diff)
downloadcurl-55c3c02e59d1daf31ec2097f93b8139ddb3fdeb6.tar.gz
http-proxy: remove unused argument from Curl_proxyCONNECT()
Diffstat (limited to 'lib/ftp.c')
-rw-r--r--lib/ftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 059bd2ac0..a33a4e0ae 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -3587,7 +3587,7 @@ static CURLcode ftp_do_more(struct connectdata *conn, int *completep)
if(conn->tunnel_state[SECONDARYSOCKET] == TUNNEL_CONNECT) {
/* As we're in TUNNEL_CONNECT state now, we know the proxy name and port
aren't used so we blank their arguments. TODO: make this nicer */
- result = Curl_proxyCONNECT(conn, SECONDARYSOCKET, NULL, 0, FALSE);
+ result = Curl_proxyCONNECT(conn, SECONDARYSOCKET, NULL, 0);
return result;
}