From 13a77e6d0857ce5d701f3cde7a861c613ac7c202 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Sat, 26 May 2001 22:37:24 +0000 Subject: Fix to work properly. (handle_multipart_signed): Fixed a bug that caused 2001-05-26 Jeffrey Stedfast * mail-format.c (try_inline_pgp_sig): Fix to work properly. (handle_multipart_signed): Fixed a bug that caused some multipart/signed messages to be handled by the multipart_mixed handler. svn path=/trunk/; revision=10016 --- mail/ChangeLog | 3 +++ mail/mail-format.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 54bad04fe6..ef6be5f3eb 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,6 +1,9 @@ 2001-05-26 Jeffrey Stedfast * mail-format.c (try_inline_pgp_sig): Fix to work properly. + (handle_multipart_signed): Fixed a bug that caused some + multipart/signed messages to be handled by the multipart_mixed + handler. 2001-05-25 Jeffrey Stedfast diff --git a/mail/mail-format.c b/mail/mail-format.c index 95bc7e92f6..fcaa02c130 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1583,7 +1583,7 @@ handle_multipart_signed (CamelMimePart *part, const char *mime_type, return handle_multipart_mixed (part, mime_type, md); } - if (camel_exception_is_set (ex)) { + if (!valid) { camel_exception_free (ex); return handle_multipart_mixed (part, mime_type, md); } -- cgit v1.2.3