From ac890cd5f25e029713d55160112e7434a57d421a Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Wed, 13 Mar 2013 20:19:43 +0000 Subject: pop3: Removed unnecessary transfer cancellation Following commit e450f66a02d8 and the changes in the multi interface being used internally, from 7.29.0, the transfer cancellation in pop3_dophase_done() is no longer required. --- lib/pop3.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'lib/pop3.c') diff --git a/lib/pop3.c b/lib/pop3.c index 34c5964a1..10975edb9 100644 --- a/lib/pop3.c +++ b/lib/pop3.c @@ -1548,14 +1548,9 @@ static CURLcode pop3_parse_custom_request(struct connectdata *conn) /* Call this when the DO phase has completed */ static CURLcode pop3_dophase_done(struct connectdata *conn, bool connected) { - struct POP3 *pop3 = conn->data->state.proto.pop3; - + (void)conn; (void)connected; - if(pop3->transfer != FTPTRANSFER_BODY) - /* no data to transfer */ - Curl_setup_transfer(conn, -1, -1, FALSE, NULL, -1, NULL); - return CURLE_OK; } -- cgit v1.2.3