From ccbfa5da0395e08ce672a0546c513cf970c29fb6 Mon Sep 17 00:00:00 2001 From: Radek Doulik Date: Tue, 19 Nov 2002 18:42:41 +0000 Subject: applied plain_signature_fix.patch svn path=/trunk/; revision=18841 --- camel/camel-mime-filter-tohtml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'camel/camel-mime-filter-tohtml.c') diff --git a/camel/camel-mime-filter-tohtml.c b/camel/camel-mime-filter-tohtml.c index 0f7fbfebf3..db84b7f9fe 100644 --- a/camel/camel-mime-filter-tohtml.c +++ b/camel/camel-mime-filter-tohtml.c @@ -211,7 +211,7 @@ writeln (CamelMimeFilter *filter, const char *in, const char *inend, char *outpt } /* otherwise, FALL THROUGH */ default: - if (!(u >= 0x20 && u < 0x80)) { + if (!(u >= 0x20 && u < 0x80) && !(html->flags & CAMEL_MIME_FILTER_TOHTML_PRESERVE_8BIT)) { if (html->flags & CAMEL_MIME_FILTER_TOHTML_ESCAPE_8BIT) *outptr++ = '?'; else -- cgit v1.2.3