From fa9748df111fd557977eecbe17a43d1344550206 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 6 Mar 2013 08:28:05 +0100 Subject: [PATCH] imap: fix compiler warning imap.c:694:21: error: unused variable 'imapc' [-Werror=unused-variable] --- lib/imap.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/imap.c b/lib/imap.c index bc96938dee..4a4f0a3c29 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -691,7 +691,6 @@ static CURLcode imap_list(struct connectdata *conn) CURLcode result = CURLE_OK; struct SessionHandle *data = conn->data; struct IMAP *imap = data->state.proto.imap; - struct imap_conn *imapc = &conn->proto.imapc; char *mailbox; /* Make sure the mailbox is in the correct atom format */ -- 2.47.3