diff options
author | Brad Hards <bradh@frogmouth.net> | 2010-12-22 11:57:48 +1100 |
---|---|---|
committer | Kamil Dudka <kdudka@redhat.com> | 2010-12-22 02:20:18 +0100 |
commit | 0e944fb24e5ac49e3ff863f89ae83ad10051525b (patch) | |
tree | 2070c35eafc728acbbf99956f8a1ad4bd8bdf1f3 /docs/examples/smtp-tls.c | |
parent | f37d681166053a25af9e1427ffe87c5ed67f0ab3 (diff) | |
download | curl-0e944fb24e5ac49e3ff863f89ae83ad10051525b.tar.gz |
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.c | 2 |
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", |