Skip to content
Snippets Groups Projects
Commit 93981bb9 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

PASV response: Value stored to 'rc' is never read

parent 8f136288
No related branches found
No related tags found
No related merge requests found
......@@ -1648,7 +1648,7 @@ static CURLcode ftp_state_pasv_resp(struct connectdata *conn,
rc = Curl_resolv(conn, newhost, newport, &addr);
if(rc == CURLRESOLV_PENDING)
/* BLOCKING */
rc = Curl_wait_for_resolv(conn, &addr);
(void)Curl_wait_for_resolv(conn, &addr);
connectport = newport; /* we connect to the remote port */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment