From f6d994221d60e8a025d2fb2779d6b9c1bc7bebe8 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Mon, 23 Jan 2006 07:18:14 +0000 Subject: [PATCH] Fixed problem with missing \r\n in email notification header SVN revision: 1629 --- src/elogd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/elogd.c b/src/elogd.c index bf5132ae..8dcbb1ec 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -1925,6 +1925,7 @@ void compose_email_header(LOGBOOK * lbs, char *subject, char *from, char *to, strlcat(mail_text, "This is a multi-part message in MIME format.\r\n", size); } else { + strlcat(mail_text, "\r\n", size); if (multipart_boundary) multipart_boundary[0] = 0; }