evolution r34786 - trunk/mail



Author: psankar
Date: Thu Jan 10 09:03:19 2008
New Revision: 34786
URL: http://svn.gnome.org/viewvc/evolution?rev=34786&view=rev

Log:
2008-01-10  Sankar P  <psankar novell com>

	* em-format-html.c: (efh_format_headers):
	Decode the right thingy. Fixes a regression in
	decoding of face header introduced while migration of
	camel_* functions to g_* functions.




Modified:
   trunk/mail/ChangeLog
   trunk/mail/em-format-html.c

Modified: trunk/mail/em-format-html.c
==============================================================================
--- trunk/mail/em-format-html.c	(original)
+++ trunk/mail/em-format-html.c	Thu Jan 10 09:03:19 2008
@@ -1910,7 +1910,7 @@
 					gchar *cp;
 
 					/* Skip over spaces */
-					for (cp = header->name; *cp == ' '; cp++);
+					for (cp = header->value; *cp == ' '; cp++);
 					face_header_value = g_base64_decode (cp, &face_header_len);
 					face_header_value = g_realloc (face_header_value, face_header_len + 1);
 					face_header_value[face_header_len] = 0;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]