From e39d94c5ef8d88c726a29f2cfa994a6a0d90be5a Mon Sep 17 00:00:00 2001
From: Jeffrey Stedfast <fejj@ximian.com>
Date: Tue, 10 Jul 2001 22:06:56 +0000
Subject: New function to parse an HTML meta-tag.

2001-07-10  Jeffrey Stedfast  <fejj@ximian.com>

	* camel-mime-utils.c (html_meta_param_list_decode): New function
	to parse an HTML meta-tag.

	* camel-mime-part-utils.c
	(simple_data_wrapper_construct_from_parser): If the Content-Type
	did not contain a charset parameter and it's also a text/html
	part, we have 1 last place to look - in the META html tags. *sigh*

	* camel-mime-message.c (camel_mime_message_get_source):
	s/gint/unsigned since that's what it should be.

svn path=/trunk/; revision=10976
---
 camel/string-utils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'camel/string-utils.c')

diff --git a/camel/string-utils.c b/camel/string-utils.c
index 22ec3d2c90..25b492b747 100644
--- a/camel/string-utils.c
+++ b/camel/string-utils.c
@@ -209,7 +209,7 @@ strip (gchar *string, gchar c)
 }
 
 char *
-strstrcase (char *haystack, const char *needle)
+strstrcase (const char *haystack, const char *needle)
 {
 	/* find the needle in the haystack neglecting case */
 	const char *ptr;
-- 
cgit