commit d3850bf9d93ab455abbc7687639b2449cfe2ac88
parent 2f24a6aef9c133a5d1f3cb2c5dd8a43891522266
Author: ukai <ukai>
Date: Sat, 21 Dec 2002 16:20:40 +0000
[w3m-dev 03594] mime decode with encoding named 'b' & 'q'
* mimehead.c (decodeWord): toupeer(method)
From: ABE Yuji <cbo46560@pop12.odn.ne.jp>
Diffstat:
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,8 @@
+2002-12-22 ABE Yuji <cbo46560@pop12.odn.ne.jp>
+
+ * [w3m-dev 03594] mime decode with encoding named 'b' & 'q'
+ * mimehead.c (decodeWord): toupeer(method)
+
2002-12-22 Fumitoshi UKAI <ukai@debian.or.jp>
* file.c (discardline): not used
diff --git a/mimehead.c b/mimehead.c
@@ -217,7 +217,7 @@ decodeWord(char **ow)
goto convert_fail;
w++;
p = w;
- switch (method) {
+ switch (toupper(method)) {
case 'B':
a = decodeB(&w);
break;