diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-07-25 05:51:04 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-07-25 05:51:04 +0800 |
commit | 1dc80dc3791eb57f9947a03a34d1e92950ee88d7 (patch) | |
tree | 58ae5428a2d4b2cdeacb666d4688566a8174b19a /mail/mail-format.c | |
parent | ad7e9b2471129eca0ce80b35c19b81b8f0a29e58 (diff) | |
download | gsoc2013-evolution-1dc80dc3791eb57f9947a03a34d1e92950ee88d7.tar.gz gsoc2013-evolution-1dc80dc3791eb57f9947a03a34d1e92950ee88d7.tar.zst gsoc2013-evolution-1dc80dc3791eb57f9947a03a34d1e92950ee88d7.zip |
check_specials if this is an application/pgp type as well.
2001-07-24 Jeffrey Stedfast <fejj@ximian.com>
* mail-format.c (handle_text_plain): check_specials if this is an
application/pgp type as well.
svn path=/trunk/; revision=11357
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r-- | mail/mail-format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c index a5f4007b6d..795bfefa5d 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1012,7 +1012,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") || !g_strcasecmp (mime_type, "application/pgp"); p = text; while (p && check_specials) { |