aboutsummaryrefslogtreecommitdiff
path: root/lib/pop3.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pop3.c')
-rw-r--r--lib/pop3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pop3.c b/lib/pop3.c
index e9eeb3a8a..f0c6155c0 100644
--- a/lib/pop3.c
+++ b/lib/pop3.c
@@ -260,19 +260,19 @@ static int pop3_endofresp(struct pingpong *pp, int *resp)
return TRUE;
}
- /* Does the server support clear text? */
+ /* Does the server support clear text authentication? */
if(len >= 4 && !memcmp(line, "USER", 4)) {
pop3c->authtypes |= POP3_TYPE_CLEARTEXT;
return FALSE;
}
- /* Does the server support APOP? */
+ /* Does the server support APOP authentication? */
if(len >= 4 && !memcmp(line, "APOP", 4)) {
pop3c->authtypes |= POP3_TYPE_APOP;
return FALSE;
}
- /* Does the server support SASL? */
+ /* Does the server support SASL based authentication? */
if(len < 4 || memcmp(line, "SASL", 4))
return FALSE;