[w3m-dev 03594] mime decode with encoding named 'b' & 'q'

* mimehead.c (decodeWord): toupeer(method)
From: ABE Yuji <cbo46560@pop12.odn.ne.jp>
This commit is contained in:
Fumitoshi UKAI
2002-12-21 16:20:40 +00:00
parent 6776e15f34
commit 29ea24810f
2 changed files with 8 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: mimehead.c,v 1.4 2001/11/24 02:01:26 ukai Exp $ */
/* $Id: mimehead.c,v 1.5 2002/12/21 16:20:40 ukai Exp $ */
/*
* MIME header support by Akinori ITO
*/
@@ -217,7 +217,7 @@ decodeWord(char **ow)
goto convert_fail;
w++;
p = w;
switch (method) {
switch (toupper(method)) {
case 'B':
a = decodeB(&w);
break;