aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorJiri Hruska <jirka@fud.cz>2013-02-23 10:29:40 +0100
committerSteve Holme <steve_holme@hotmail.com>2013-02-23 11:27:02 +0000
commit2476b34b95596ec16aab09c85133bc7eddd8ca53 (patch)
tree6aa1ba076d4ac7bf58999b1c3197d3ab9b672222 /lib/urldata.h
parent3906353b415a1dd82baf9d6513f46b18308966d8 (diff)
imap: Introduced a custom IMAP structure for per-request data
Created a new IMAP structure and changed the type of the imap proto variable in connectdata from FTP* to the new IMAP*. Moved the mailbox variable from the per-connection struct imap_conn to the new per-request struct and fixed references accordingly.
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index d564ae1da..dd592521a 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -1292,7 +1292,7 @@ struct UrlState {
void *telnet; /* private for telnet.c-eyes only */
void *generic;
struct SSHPROTO *ssh;
- struct FTP *imap;
+ struct IMAP *imap;
struct FTP *pop3;
struct FTP *smtp;
} proto;