aboutsummaryrefslogtreecommitdiff
path: root/lib/smtp.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-02-23 19:46:21 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-02-23 19:46:21 +0000
commit0b795db731f7a9ef33d45d2be3fb666dd9813d56 (patch)
tree3150afa9c4a028f659e0f62e51a512e3beb28afe /lib/smtp.h
parent8a468ef2225d77e195459e44a14d391a651ed5ae (diff)
smtp: Removed some FTP heritage leftovers
Removed user and passwd from the SMTP 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/smtp.h')
-rw-r--r--lib/smtp.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/smtp.h b/lib/smtp.h
index ee057af79..bf2f90d8d 100644
--- a/lib/smtp.h
+++ b/lib/smtp.h
@@ -59,8 +59,6 @@ typedef enum {
used. */
struct SMTP {
curl_off_t *bytecountp;
- char *user; /* User name string */
- char *passwd; /* Password string */
curl_pp_transfer transfer;
struct curl_slist *rcpt; /* Recipient list */
};