]> granicus.if.org Git - curl/commitdiff
pop3 / smtp: Small comment tidy up
authorSteve Holme <steve_holme@hotmail.com>
Thu, 28 Feb 2013 22:26:46 +0000 (22:26 +0000)
committerSteve Holme <steve_holme@hotmail.com>
Thu, 28 Feb 2013 22:27:10 +0000 (22:27 +0000)
Small tidy up to keep some comments consistant across each of the email
protocols.

lib/pop3.c
lib/smtp.c

index ce69c928b77784b47cdb29fae56c6fcd7633d62a..6db71d1e63405d5445e7e70e7e89e9742967bc44 100644 (file)
@@ -1134,7 +1134,7 @@ static CURLcode pop3_state_command_resp(struct connectdata *conn,
     pp->cache_size = 0;
   }
 
-  /* End of do phase */
+  /* End of DO phase */
   state(conn, POP3_STOP);
 
   return result;
index a159e3caef561955b0438bff228bcbd48cc1a38c..006d2209482726ccd74291ba22e4773da1eceef2 100644 (file)
@@ -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;