diff options
author | Hal9000 <hal9000@denorastats.org> | 2012-04-06 15:12:22 +0200 |
---|---|---|
committer | Hal9000 <hal9000@denorastats.org> | 2012-04-06 15:12:22 +0200 |
commit | 6b473f22bd6f82374c8b277955add072d53ba817 (patch) | |
tree | 7cc0dca5b82eb222235a5bf6e91f48f08bbe29e7 /src/mail.cpp | |
parent | 05bb80c06cdb0aeccd6975f36748828bb3ef8c6c (diff) |
Revert last commit cause guess what, I screwed things up
Diffstat (limited to 'src/mail.cpp')
-rw-r--r-- | src/mail.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mail.cpp b/src/mail.cpp index a5bcfe105..bb9798b5f 100644 --- a/src/mail.cpp +++ b/src/mail.cpp @@ -41,7 +41,7 @@ void MailThread::Run() fprintf(pipe, "To: %s <%s>\n", MailTo.c_str(), Addr.c_str());
else
fprintf(pipe, "To: \"%s\" <%s>\n", MailTo.c_str(), Addr.c_str());
- fprintf(pipe, "Subject: %s\n\n", Subject.c_str());
+ fprintf(pipe, "Subject: %s\n", Subject.c_str());
fprintf(pipe, "%s", Message.c_str());
fprintf(pipe, "\n.\n");
|