aboutsummaryrefslogtreecommitdiff
path: root/lib/smtp.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-02-28 22:26:46 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-02-28 22:27:10 +0000
commitb4eb08e7fb0eef68772258acec4fbd21029b78ae (patch)
treedb0814c2a51b7a2e856111729e30b7a95793d39f /lib/smtp.c
parent10549ee08f65d2680c8edfd99b1d3c45d2ee3edb (diff)
pop3 / smtp: Small comment tidy up
Small tidy up to keep some comments consistant across each of the email protocols.
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 a159e3cae..006d22094 100644
--- a/lib/smtp.c
+++ b/lib/smtp.c
@@ -1100,7 +1100,7 @@ static CURLcode smtp_state_data_resp(struct connectdata *conn, int smtpcode,
/* SMTP upload */
Curl_setup_transfer(conn, -1, -1, FALSE, NULL, FIRSTSOCKET, NULL);
- /* End of do phase */
+ /* End of DO phase */
state(conn, SMTP_STOP);
return CURLE_OK;
@@ -1119,7 +1119,7 @@ static CURLcode smtp_state_postdata_resp(struct connectdata *conn,
if(smtpcode != 250)
result = CURLE_RECV_ERROR;
- /* End of done phase */
+ /* End of DONE phase */
state(conn, SMTP_STOP);
return result;