aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/smtp-mail.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2014-01-12 15:30:45 +0000
committerSteve Holme <steve_holme@hotmail.com>2014-01-12 15:43:07 +0000
commit7e8596408042611d70aa073ed4b577446ffc7a03 (patch)
tree14ef89df69241edff220a68a8159fba2203f96d1 /docs/examples/smtp-mail.c
parent9bd2fdb8e24ffaace66bce12cfa5a5715e565783 (diff)
examples: Synchronised comments between SMTP MAIL examples
Diffstat (limited to 'docs/examples/smtp-mail.c')
-rw-r--r--docs/examples/smtp-mail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/smtp-mail.c b/docs/examples/smtp-mail.c
index bfc445dc1..ed9524e87 100644
--- a/docs/examples/smtp-mail.c
+++ b/docs/examples/smtp-mail.c
@@ -111,7 +111,7 @@ int main(void)
curl_easy_setopt(curl, CURLOPT_READDATA, &upload_ctx);
curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);
- /* send the message (including headers) */
+ /* Send the message */
res = curl_easy_perform(curl);
/* Check for errors */
@@ -119,7 +119,7 @@ int main(void)
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(res));
- /* free the list of recipients */
+ /* Free the list of recipients */
curl_slist_free_all(recipients);
/* curl won't send the QUIT command until you call cleanup, so you should be