summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Menzel <paulepanter@users.sourceforge.net>2012-11-13 14:03:46 +0100
committerMilan Crha <mcrha@redhat.com>2012-11-13 14:03:46 +0100
commit77f5c06eba92dccb176567781fe693c21683c910 (patch)
treed70333e04fb9d5ac7d0c9d70d3514b9bd290b859
parentc5c856b6dadbcfffe61ae197699577cf8d699ebc (diff)
downloadevolution-data-server-77f5c06eba92dccb176567781fe693c21683c910.tar.gz
Bug #687634 - Improve camel console warning text
-rw-r--r--camel/camel-mime-filter-tohtml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-filter-tohtml.c b/camel/camel-mime-filter-tohtml.c
index b87a3253d..053b51893 100644
--- a/camel/camel-mime-filter-tohtml.c
+++ b/camel/camel-mime-filter-tohtml.c
@@ -170,7 +170,7 @@ writeln (CamelMimeFilter *mime_filter,
u = camel_utf8_getc_limit (&inptr, inend);
switch (u) {
case 0xffff:
- g_warning ("Truncated utf8 buffer");
+ g_warning ("Truncated UTF-8 buffer (The cause might be missing character encoding information in the message header. Try a different character encoding.)");
return outptr;
case '<':
outptr = g_stpcpy (outptr, "&lt;");