diff options
author | Jiri Hruska <jirka@fud.cz> | 2013-02-23 10:41:47 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-23 11:27:04 +0000 |
commit | 13625a0d09a0ad61960d2bd9eeb1fec3c05461d6 (patch) | |
tree | 7f665da54159934a0a402faa2abd9fbe80bde28e /lib/imap.h | |
parent | 2476b34b95596ec16aab09c85133bc7eddd8ca53 (diff) | |
download | curl-13625a0d09a0ad61960d2bd9eeb1fec3c05461d6.tar.gz |
imap: Removed some FTP heritage leftovers
Removed user and passwd from the IMAP struct as these cannot be set on
a per-request basis and are leftover from legacy FTP code.
Diffstat (limited to 'lib/imap.h')
-rw-r--r-- | lib/imap.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/imap.h b/lib/imap.h index acec210b0..7ab1af7b3 100644 --- a/lib/imap.h +++ b/lib/imap.h @@ -58,8 +58,6 @@ typedef enum { used. */ struct IMAP { curl_off_t *bytecountp; - char *user; /* User name string */ - char *passwd; /* Password string */ curl_ftptransfer transfer; char *mailbox; /* Mailbox to select */ }; |