diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-04-26 00:34:22 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-04-26 00:34:22 +0200 |
commit | 55c3c02e59d1daf31ec2097f93b8139ddb3fdeb6 (patch) | |
tree | 47306104b370502648629d9db757e89d931fad1e /lib/ftp.c | |
parent | fb67c977b98d8a7e1fcbed523fe6ce0c06ec1ac8 (diff) | |
download | curl-55c3c02e59d1daf31ec2097f93b8139ddb3fdeb6.tar.gz |
http-proxy: remove unused argument from Curl_proxyCONNECT()
Diffstat (limited to 'lib/ftp.c')
-rw-r--r-- | lib/ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |