aboutsummaryrefslogtreecommitdiff
path: root/lib/smtp.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-02-05 21:09:34 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-02-05 21:09:34 +0000
commit1d22407863849fc3d5f5ba26735ef479295f3d57 (patch)
tree2ec3a0cae3db1a55377be18a0ca4ad0aab93995d /lib/smtp.c
parentbb7c2ee37c46e6f1d75a4c4ba5e37209e4b9bf7b (diff)
email: Reworked comments in the endofresp() functions
Tidied up the comments in the endofresp() functions to be more meaningful prior to release.
Diffstat (limited to 'lib/smtp.c')
-rw-r--r--lib/smtp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/smtp.c b/lib/smtp.c
index 02048b05d..d2d4aeb14 100644
--- a/lib/smtp.c
+++ b/lib/smtp.c
@@ -226,13 +226,13 @@ static int smtp_endofresp(struct pingpong *pp, int *resp)
line += 4;
len -= 4;
- /* Do we have a SIZE capability? */
+ /* Does the server support the SIZE capability? */
if(smtpc->state == SMTP_EHLO && len >= 4 && !memcmp(line, "SIZE", 4)) {
DEBUGF(infof(conn->data, "Server supports SIZE extension.\n"));
smtpc->size_supported = true;
}
- /* Do we have an AUTH capability? */
+ /* Do we have the authentication mechanism list? */
if(smtpc->state == SMTP_EHLO && len >= 5 && !memcmp(line, "AUTH ", 5)) {
line += 5;
len -= 5;