mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:31:41 +03:00
examples: Synchronised comments between SMTP MAIL examples
This commit is contained in:
parent
9bd2fdb8e2
commit
7e85964080
3 changed files with 21 additions and 11 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue