diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-01-22 13:09:11 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-01-22 13:09:11 +0800 |
commit | 891364e803b81f24fb5b914aa88bbebf75202c39 (patch) | |
tree | 94adade5d7ef8f377b68276058c31521187a3ffd /mail/mail-format.c | |
parent | 6fca99511ab7b1a076c3d1d311ee3f10dcff1abd (diff) | |
download | gsoc2013-evolution-891364e803b81f24fb5b914aa88bbebf75202c39.tar.gz gsoc2013-evolution-891364e803b81f24fb5b914aa88bbebf75202c39.tar.zst gsoc2013-evolution-891364e803b81f24fb5b914aa88bbebf75202c39.zip |
Helps if I spell stuff correctly so it can pass the tests ;-)
2001-01-22 Jeffrey Stedfast <fejj@ximian.com>
* mail-crypto.c (mail_crypto_is_rfc2015_signed): Helps if I spell
stuff correctly so it can pass the tests ;-)
svn path=/trunk/; revision=7697
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r-- | mail/mail-format.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c index 6e110fb806..0651b71cd7 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1218,7 +1218,6 @@ handle_multipart_encrypted (CamelMimePart *part, const char *mime_type, } } -/* FIXME: So this function is mostly just a place-holder for now */ static gboolean handle_multipart_signed (CamelMimePart *part, const char *mime_type, MailDisplay *md) @@ -1237,8 +1236,10 @@ handle_multipart_signed (CamelMimePart *part, const char *mime_type, camel_exception_init (&ex); valid = pgp_mime_part_verify (part, &ex); - if (camel_exception_is_set (&ex)) + if (camel_exception_is_set (&ex)) { + /* FIXME: maybe we should warn the user? */ handle_multipart_mixed (part, mime_type, md); + } return valid; } |