From 539ed6f02ab51083592a463421ae4c4555a740cc Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 23 Feb 2013 19:44:00 +0100 Subject: pop3: fix compiler warning error: declaration of 'pop3' shadows a previous local --- lib/pop3.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lib/pop3.c') 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"; -- cgit v1.2.3