summary refs log tree commit diff
path: root/mshow.c
diff options
context:
space:
mode:
Diffstat (limited to 'mshow.c')
-rw-r--r--mshow.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mshow.c b/mshow.c
index a5c078c..1fdbbdd 100644
--- a/mshow.c
+++ b/mshow.c
@@ -492,8 +492,10 @@ show(char *file)
 				*n = 0;
 			v = blaze822_chdr(msg, h);
 			if (v) {
+				char d[4096];
+				blaze822_decode_rfc2047(d, v, sizeof d, "UTF-8");
 				printhdr(h);
-				printf(": %s\n", v);
+				printf(": %s\n", d);
 			}
 			if (n) {
 				*n = ':';