aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/smtp-tls.c
diff options
context:
space:
mode:
authorBrad Hards <bradh@frogmouth.net>2010-12-22 11:57:48 +1100
committerKamil Dudka <kdudka@redhat.com>2010-12-22 02:20:18 +0100
commit0e944fb24e5ac49e3ff863f89ae83ad10051525b (patch)
tree2070c35eafc728acbbf99956f8a1ad4bd8bdf1f3 /docs/examples/smtp-tls.c
parentf37d681166053a25af9e1427ffe87c5ed67f0ab3 (diff)
smtp-tls: add a missing newline
Without this you won't get the next (Subject) line.
Diffstat (limited to 'docs/examples/smtp-tls.c')
-rw-r--r--docs/examples/smtp-tls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/smtp-tls.c b/docs/examples/smtp-tls.c
index a8baade58..97119c568 100644
--- a/docs/examples/smtp-tls.c
+++ b/docs/examples/smtp-tls.c
@@ -25,7 +25,7 @@ static const char *payload_text[]={
"To: " TO "\n",
"From: " FROM "(Example User)\n",
"Cc: " CC "(Another example User)\n",
- "Message-ID: <dcd7cb36-11db-487a-9f3a-e652a9458efd@rfcpedant.example.org>",
+ "Message-ID: <dcd7cb36-11db-487a-9f3a-e652a9458efd@rfcpedant.example.org>\n",
"Subject: SMTP TLS example message\n",
"\n", /* empty line to divide headers from body, see RFC5322 */
"The body of the message starts here.\n",