aboutsummaryrefslogtreecommitdiff
path: root/lib/smtp.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-01-26 15:06:44 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-01-26 15:06:44 +0000
commit73fae581323b617855d1187298c5bb8476ed1135 (patch)
treef8c03298092c7b53ab1bf449d8f3e066ddc3516f /lib/smtp.h
parent44cf225f7a260d781e9d08bfadcefd08d6c5cf79 (diff)
email: Updated comment regarding ssldone usage
Updated the ssldone comment as multi mode is always used internally now.
Diffstat (limited to 'lib/smtp.h')
-rw-r--r--lib/smtp.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/smtp.h b/lib/smtp.h
index 0d605628d..d926795f5 100644
--- a/lib/smtp.h
+++ b/lib/smtp.h
@@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 2009 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 2009 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -64,8 +64,7 @@ struct smtp_conn {
unsigned int authused; /* Auth mechanism used for the connection */
smtpstate state; /* Always use smtp.c:state() to change state! */
struct curl_slist *rcpt; /* Recipient list */
- bool ssldone; /* Is connect() over SSL done? Only relevant in
- multi mode */
+ bool ssldone; /* Is connect() over SSL done? */
bool size_supported; /* If server supports SIZE extension according to
RFC 1870 */
};
@@ -85,4 +84,3 @@ extern const struct Curl_handler Curl_handler_smtps;
CURLcode Curl_smtp_escape_eob(struct connectdata *conn, ssize_t nread);
#endif /* HEADER_CURL_SMTP_H */
-