aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/pop3.c2
-rw-r--r--lib/smtp.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/pop3.c b/lib/pop3.c
index cc067d67c..fb2675d87 100644
--- a/lib/pop3.c
+++ b/lib/pop3.c
@@ -371,7 +371,7 @@ static void pop3_get_message(char *buffer, char** outptr)
message[len] != '\t')
break;
- /* Terminate the challenge */
+ /* Terminate the message */
if(++len) {
message[len] = '\0';
}
diff --git a/lib/smtp.c b/lib/smtp.c
index 9ed0e0057..02af49560 100644
--- a/lib/smtp.c
+++ b/lib/smtp.c
@@ -328,7 +328,7 @@ static void smtp_get_message(char *buffer, char** outptr)
message[len] != '\t')
break;
- /* Terminate the challenge */
+ /* Terminate the message */
if(++len) {
message[len] = '\0';
}