about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--mshow.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/mshow.c b/mshow.c
index 3684faf..2016db7 100644
--- a/mshow.c
+++ b/mshow.c
@@ -146,6 +146,8 @@ mime_action
 render_mime(int depth, struct message *msg, char *body, size_t bodylen)
 {
 	char *ct = blaze822_hdr(msg, "content-type");
+	if (!ct)
+		ct = "text/x-unknown";
 	char *mt = mimetype(ct);
 	char *tlmt = tlmimetype(ct);
 	char *filename = mime_filename(msg);
@@ -230,7 +232,7 @@ reply_mime(int depth, struct message *msg, char *body, size_t bodylen)
 {
 	(void) depth;
 
-	char *ct = blaze822_hdr(msg, "Content-Type");
+	char *ct = blaze822_hdr(msg, "content-type");
 	char *mt = mimetype(ct);
 	char *tlmt = tlmimetype(ct);
 
@@ -260,6 +262,8 @@ list_mime(int depth, struct message *msg, char *body, size_t bodylen)
 	(void) body;
 
 	char *ct = blaze822_hdr(msg, "content-type");
+	if (!ct)
+		ct = "text/x-unknown";
 	char *mt = mimetype(ct);
 	char *filename = mime_filename(msg);