aboutsummaryrefslogtreecommitdiffstats
path: root/composer
diff options
context:
space:
mode:
Diffstat (limited to 'composer')
-rw-r--r--composer/ChangeLog7
-rw-r--r--composer/e-msg-composer.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog
index acb5eeaf5f..7db08ee174 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,10 @@
+2007-09-07 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #473903
+
+ * e-msg-composer.c: (handle_multipart_encrypted):
+ Fixes serious compiler warning.
+
2007-09-03 Srinivasa Ragavan <sragavan@novell.com>
** Fix for bug #471791 (Move away from asserts to g_ret*)
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index f38afb554e..d8415c9404 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -4345,7 +4345,7 @@ handle_multipart_encrypted (EMsgComposer *composer, CamelMimePart *multipart, in
handle_multipart_signed (composer, content_multipart, depth);
} else if (CAMEL_IS_MULTIPART_ENCRYPTED (content)) {
/* decrypt the encrypted content and configure the composer to encrypt outgoing messages */
- handle_multipart_encrypted (composer, content_multipart, depth);
+ handle_multipart_encrypted (composer, mime_part, depth);
} else if (camel_content_type_is (content_type, "multipart", "alternative")) {
/* this contains the text/plain and text/html versions of the message body */
handle_multipart_alternative (composer, content_multipart, depth);