diff options
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-mt.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index e623ff080d..30332e45bc 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2008-05-23 Srinivasa Ragavan <sragavan@novell.com> + + * mail-mt.c: (mail_msg_check_error): Convert the the warning to a + message. + 2008-05-22 Matthew Barnes <mbarnes@redhat.com> * em-format-html.c (efh_message_external): diff --git a/mail/mail-mt.c b/mail/mail-mt.c index 141abad095..d147132689 100644 --- a/mail/mail-mt.c +++ b/mail/mail-mt.c @@ -319,7 +319,7 @@ mail_msg_check_error (gpointer msg) /* we key on the operation pointer, which is at least accurate enough for the operation type, although it could be on a different object. */ if (g_hash_table_lookup(active_errors, m->info)) { - g_warning("Error occurred while existing dialogue active:\n%s", camel_exception_get_description(&m->ex)); + g_message("Error occurred while existing dialogue active:\n%s", camel_exception_get_description(&m->ex)); return; } |