diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-04-16 23:28:20 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-04-16 23:28:20 +0200 |
commit | 93981bb9b5026f88ed4dec5d790bb7c84265210a (patch) | |
tree | 1ee2923233cd264697d8a426c02d61e493ecc2d9 /lib | |
parent | 8f136288c5b6ad9fe3be9cd69a96f585f6eda2aa (diff) |
PASV response: Value stored to 'rc' is never read
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |