diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-03-30 00:17:02 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-03-30 07:52:28 +0200 |
commit | 575e885db0f3b2c50434f63269438fe21cbbb978 (patch) | |
tree | 48bd63f9b3ccd9220f0de284de6fd678311f2134 /lib/pop3.c | |
parent | 93935c08c1b85482bc86bd6adcc33c1d924eed5e (diff) | |
download | curl-575e885db0f3b2c50434f63269438fe21cbbb978.tar.gz |
multi: turn Curl_done into file local multi_done
... as it now is used by multi.c only.
Diffstat (limited to 'lib/pop3.c')
-rw-r--r-- | lib/pop3.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/pop3.c b/lib/pop3.c index 823761d2e..0c2446ded 100644 --- a/lib/pop3.c +++ b/lib/pop3.c @@ -1166,10 +1166,6 @@ static CURLcode pop3_done(struct connectdata *conn, CURLcode status, (void)premature; if(!pop3) - /* When the easy handle is removed from the multi interface while libcurl - is still trying to resolve the host name, the POP3 struct is not yet - initialized. However, the removal action calls Curl_done() which in - turn calls this function, so we simply return success. */ return CURLE_OK; if(status) { |