From 758f7345f5c427fd060da29d82f59b9e7ada87d3 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 24 Jun 2004 03:01:42 +0000 Subject: Same. 2004-06-23 Jeffrey Stedfast * providers/imap/camel-imap-provider.c (imap_url_equal): Same. * providers/imap4/camel-imap4-provider.c (imap4_url_equal): Check the protocol. svn path=/trunk/; revision=26488 --- camel/providers/imap4/camel-imap4-store.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'camel/providers/imap4/camel-imap4-store.c') diff --git a/camel/providers/imap4/camel-imap4-store.c b/camel/providers/imap4/camel-imap4-store.c index 4223ab0c32..834ff93252 100644 --- a/camel/providers/imap4/camel-imap4-store.c +++ b/camel/providers/imap4/camel-imap4-store.c @@ -98,15 +98,16 @@ imap4_hash_folder_name (gconstpointer key) return g_str_hash (key); } -static gint +static int imap4_compare_folder_name (gconstpointer a, gconstpointer b) { gconstpointer aname = a, bname = b; - + if (g_ascii_strcasecmp (a, "INBOX") == 0) aname = "INBOX"; if (g_ascii_strcasecmp (b, "INBOX") == 0) bname = "INBOX"; + return g_str_equal (aname, bname); } -- cgit v1.2.3