From 7e8596408042611d70aa073ed4b577446ffc7a03 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sun, 12 Jan 2014 15:30:45 +0000 Subject: examples: Synchronised comments between SMTP MAIL examples --- docs/examples/smtp-mail.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/examples/smtp-mail.c') 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 -- cgit v1.2.3