about summary refs log tree commit diff
path: root/rfc2045.c
diff options
context:
space:
mode:
Diffstat (limited to 'rfc2045.c')
-rw-r--r--rfc2045.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/rfc2045.c b/rfc2045.c
index 49743cb..c45f3fd 100644
--- a/rfc2045.c
+++ b/rfc2045.c
@@ -35,8 +35,10 @@ blaze822_mime_body(struct message *msg,
 		ct = "text/plain; charset=US-ASCII";
 
 	char *s = ct;
-	while (*s && *s != ';')
+	while (*s && *s != ';') {
+		*s = lc(*s);
 		s++;
+	}
 
 	*cto = ct;