diff options
author | Viktor Szakats <vszakats@users.noreply.github.com> | 2017-09-05 10:05:27 +0000 |
---|---|---|
committer | Viktor Szakats <vszakats@users.noreply.github.com> | 2017-09-05 10:05:27 +0000 |
commit | 25fc694a410043cf0fdb8725685e1426b3093d43 (patch) | |
tree | 07ce288edec4f1f817ba67ea904a0e4b1fb6ae76 /docs/examples/smtp-mail.c | |
parent | eae21db920b19ed0729196165f0abf54749cf6db (diff) | |
download | curl-25fc694a410043cf0fdb8725685e1426b3093d43.tar.gz |
examples/mime: minor example code fixes
Diffstat (limited to 'docs/examples/smtp-mail.c')
-rw-r--r-- | docs/examples/smtp-mail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/smtp-mail.c b/docs/examples/smtp-mail.c index 315bb2cc5..1fabe4b4c 100644 --- a/docs/examples/smtp-mail.c +++ b/docs/examples/smtp-mail.c @@ -43,8 +43,8 @@ static const char *payload_text[] = { "Date: Mon, 29 Nov 2010 21:54:29 +1100\r\n", "To: " TO "\r\n", - "From: " FROM "(Example User)\r\n", - "Cc: " CC "(Another example User)\r\n", + "From: " FROM " (Example User)\r\n", + "Cc: " CC " (Another example User)\r\n", "Message-ID: <dcd7cb36-11db-487a-9f3a-e652a9458efd@" "rfcpedant.example.org>\r\n", "Subject: SMTP example message\r\n", |