From: Daniel Stenberg Date: Sat, 23 Feb 2013 18:44:00 +0000 (+0100) Subject: pop3: fix compiler warning X-Git-Tag: curl-7_30_0~291 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=539ed6f02ab51083592a463421ae4c4555a740cc;p=curl pop3: fix compiler warning error: declaration of 'pop3' shadows a previous local --- diff --git a/lib/pop3.c b/lib/pop3.c index 43171f768..89934b80a 100644 --- a/lib/pop3.c +++ b/lib/pop3.c @@ -1061,11 +1061,9 @@ static CURLcode pop3_command(struct connectdata *conn) if(pop3->mailbox[0] == '\0' || conn->data->set.ftp_list_only) { command = "LIST"; - if(pop3->mailbox[0] != '\0') { + if(pop3->mailbox[0] != '\0') /* Message specific LIST so skip the BODY transfer */ - struct POP3 *pop3 = conn->data->state.proto.pop3; pop3->transfer = FTPTRANSFER_INFO; - } } else command = "RETR";