summaryrefslogtreecommitdiff
path: root/lib/smtp.c
diff options
context:
space:
mode:
authorEddie Lumpkin <ewlumpkin@gmail.com>2021-10-22 18:59:11 +0000
committerDaniel Stenberg <daniel@haxx.se>2021-10-22 22:53:44 +0200
commit8e701cc978430d638517d025fade2b0dc1ae9b73 (patch)
treeb1cd344025e01067e65f720166e99e82f27eb7a0 /lib/smtp.c
parent83393b1a3613ec4e99502ff01ac936994841ced9 (diff)
downloadcurl-8e701cc978430d638517d025fade2b0dc1ae9b73.tar.gz
lib: fixing comment spelling typos in lib files
Closes #7894 Signed-off-by: ewlumpkin <ewlumpkin@gmail.com>
Diffstat (limited to 'lib/smtp.c')
-rw-r--r--lib/smtp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/smtp.c b/lib/smtp.c
index fdacefe55..8e0b04609 100644
--- a/lib/smtp.c
+++ b/lib/smtp.c
@@ -490,7 +490,7 @@ static CURLcode smtp_perform_authentication(struct Curl_easy *data)
saslprogress progress;
/* Check we have enough data to authenticate with, and the
- server supports authentiation, and end the connect phase if not */
+ server supports authentication, and end the connect phase if not */
if(!smtpc->auth_supported ||
!Curl_sasl_can_authenticate(&smtpc->sasl, conn)) {
state(data, SMTP_STOP);
@@ -527,7 +527,7 @@ static CURLcode smtp_perform_command(struct Curl_easy *data)
if(smtp->rcpt) {
/* We notify the server we are sending UTF-8 data if a) it supports the
- SMTPUTF8 extension and b) The mailbox contains UTF-8 charaacters, in
+ SMTPUTF8 extension and b) The mailbox contains UTF-8 characters, in
either the local address or host name parts. This is regardless of
whether the host name is encoded using IDN ACE */
bool utf8 = FALSE;
@@ -600,7 +600,7 @@ static CURLcode smtp_perform_mail(struct Curl_easy *data)
struct connectdata *conn = data->conn;
/* We notify the server we are sending UTF-8 data if a) it supports the
- SMTPUTF8 extension and b) The mailbox contains UTF-8 charaacters, in
+ SMTPUTF8 extension and b) The mailbox contains UTF-8 characters, in
either the local address or host name parts. This is regardless of
whether the host name is encoded using IDN ACE */
bool utf8 = FALSE;