mirror of
https://github.com/curl/curl.git
synced 2026-06-07 15:34:15 +03:00
fix unused param in ftp
This commit is contained in:
parent
d4fcbfff68
commit
e926009fdf
1 changed files with 1 additions and 1 deletions
|
|
@ -1807,7 +1807,7 @@ static char *control_address_dup(struct Curl_easy *data,
|
|||
if(conn->bits.tunnel_proxy || conn->bits.socksproxy)
|
||||
return strdup(conn->host.name);
|
||||
#endif
|
||||
if(!Curl_conn_get_ip_info(data, data->conn, FIRSTSOCKET, &is_ipv6, &ipquad))
|
||||
if(!Curl_conn_get_ip_info(data, conn, FIRSTSOCKET, &is_ipv6, &ipquad))
|
||||
return strdup(ipquad.remote_ip);
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue