From: Daniel Stenberg Date: Fri, 16 Apr 2010 21:43:54 +0000 (+0200) Subject: FTP PORT: Value stored to 'rc' is never read X-Git-Tag: curl-7_21_0~144^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d6be52d80e10ddb04e55177a9d4afbd27aafb634;p=curl FTP PORT: Value stored to 'rc' is never read --- diff --git a/lib/ftp.c b/lib/ftp.c index 11bd80fd6..95e2a1200 100644 --- a/lib/ftp.c +++ b/lib/ftp.c @@ -820,7 +820,7 @@ static CURLcode ftp_state_use_port(struct connectdata *conn, /* resolv ip/host to ip */ rc = Curl_resolv(conn, host, 0, &h); if(rc == CURLRESOLV_PENDING) - rc = Curl_wait_for_resolv(conn, &h); + (void)Curl_wait_for_resolv(conn, &h); if(h) { res = h->addr; /* when we return from this function, we can forget about this entry