diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-02-23 16:27:17 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-23 16:27:17 +0000 |
commit | 0ee79114ef6f3a8ea3bb4b1cc0a502b3164b76ad (patch) | |
tree | c12f595266b24e1a86a6979622eed87576aed363 /lib/pop3.h | |
parent | 29a4a16db8dbf060ef193ff9d673d69449ec079f (diff) | |
download | curl-0ee79114ef6f3a8ea3bb4b1cc0a502b3164b76ad.tar.gz |
pop3: Removed some FTP heritage leftovers
Removed user and passwd from the POP3 struct as these cannot be set on
a per-request basis and are leftover from legacy FTP code.
Changed some comments still using FTP terminology.
Diffstat (limited to 'lib/pop3.h')
-rw-r--r-- | lib/pop3.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/pop3.h b/lib/pop3.h index c16ad395c..cfad93c84 100644 --- a/lib/pop3.h +++ b/lib/pop3.h @@ -58,8 +58,6 @@ typedef enum { used. */ struct POP3 { curl_off_t *bytecountp; - char *user; /* User name string */ - char *passwd; /* Password string */ curl_ftptransfer transfer; char *mailbox; /* Message ID */ char *custom; /* Custom Request */ |