[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,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
@@ -6000,4 +6005,4 @@ a * [w3m-dev 03276] compile error on EWS4800
* release-0-2-1
* import w3m-0.2.1
$Id: ChangeLog,v 1.639 2002/12/21 16:19:33 ukai Exp $
$Id: ChangeLog,v 1.640 2002/12/21 16:20:40 ukai Exp $

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;