From: Kimmo Suominen Date: Thu, 2 Jan 2003 04:07:49 +0000 (+0000) Subject: Fix detection of non-mime messages when the charset is not enclosed X-Git-Tag: RELEASE_1_2~107 X-Git-Url: http://git.marmaro.de/?a=commitdiff_plain;h=ee40b1147dd59da498fcfe1329eb67a0c328f536;p=mmh Fix detection of non-mime messages when the charset is not enclosed in double quotes. (Not perfect yet, but 97% effective.) --- diff --git a/uip/show.c b/uip/show.c index 1137c39..5773b56 100644 --- a/uip/show.c +++ b/uip/show.c @@ -474,7 +474,7 @@ invalid: *bp = '\0'; } else { for (bp = dp; *bp; bp++) - if (isspace (*bp)) { + if (!istoken (*bp)) { *bp = '\0'; break; }