From 55c3c02e59d1daf31ec2097f93b8139ddb3fdeb6 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 26 Apr 2017 00:34:22 +0200 Subject: http-proxy: remove unused argument from Curl_proxyCONNECT() --- lib/ftp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/ftp.c') 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; } -- cgit v1.2.1