From 726c06dcdd648c46b963475eb7801c69e154b87a Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 20 Apr 2001 19:42:05 +0000 Subject: Fix a dumb thinko in my 04-11 patch. * mail-format.c (handle_text_plain): Fix a dumb thinko in my 04-11 patch. svn path=/trunk/; revision=9477 --- mail/ChangeLog | 5 +++++ mail/mail-format.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'mail') diff --git a/mail/ChangeLog b/mail/ChangeLog index d4bed1ea05..804838f825 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-04-20 Dan Winship + + * mail-format.c (handle_text_plain): Fix a dumb thinko in my 04-11 + patch. + 2001-04-20 Kjartan Maraas * mail-ops.c: (send_mail_desc): Convert subject from utf8 diff --git a/mail/mail-format.c b/mail/mail-format.c index 5f04ecb231..bd26438db3 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -891,7 +891,7 @@ handle_text_plain (CamelMimePart *part, const char *mime_type, * has decided to call text/plain because it starts with English * text...) */ - check_specials = g_strcasecmp (mime_type, "text/plain") != 0; + check_specials = (g_strcasecmp (mime_type, "text/plain") == 0); p = text; while (p && check_specials) { -- cgit