diff options
author | Daniel Stenberg <daniel@haxx.se> | 2013-03-06 08:28:05 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2013-03-06 08:28:05 +0100 |
commit | fa9748df111fd557977eecbe17a43d1344550206 (patch) | |
tree | e24d824a5251da9116db5f0aa0730164ac922fc1 | |
parent | 198012ee1376707718084e57e30771824edf2847 (diff) |
imap: fix compiler warning
imap.c:694:21: error: unused variable 'imapc' [-Werror=unused-variable]
-rw-r--r-- | lib/imap.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/imap.c b/lib/imap.c index bc96938de..4a4f0a3c2 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 */ |