From ee40b1147dd59da498fcfe1329eb67a0c328f536 Mon Sep 17 00:00:00 2001 From: Kimmo Suominen Date: Thu, 2 Jan 2003 04:07:49 +0000 Subject: [PATCH] Fix detection of non-mime messages when the charset is not enclosed in double quotes. (Not perfect yet, but 97% effective.) --- uip/show.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 1.7.10.4