From 18dc66f5943935bdb5cbc1f52082aadea55a68ea Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Sat, 17 Jun 2000 05:29:55 +0000 Subject: Added code to expunge if called for (still need to finish coding this). 2000-06-16 Jeffrey Stedfast * providers/imap/camel-imap-folder.c (imap_sync): Added code to expunge if called for (still need to finish coding this). (imap_get_uids): Implemented. (imap_get_summary): Found a way to get the date (imap_summary_get_by_uid): Same. (imap_free_summary): Implemented. * string-utils.c (strstrcase): Fixed a compile warning * providers/imap/camel-imap-summary.c: Removed - we don't need a CamelImapSummary structure. svn path=/trunk/; revision=3606 --- 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 28a4a81a0e..8c46df7a60 100644 --- a/camel/string-utils.c +++ b/camel/string-utils.c @@ -189,7 +189,7 @@ strstrcase (const gchar *haystack, const gchar *needle) if (len > strlen(haystack)) return NULL; - for (ptr = haystack; *(ptr + len - 1) != '\0'; ptr++) + for (ptr = (char *)haystack; *(ptr + len - 1) != '\0'; ptr++) if (!g_strncasecmp(ptr, needle, len)) return ptr; -- cgit v1.2.3