From 9c3295326aef917055c1ddc4e58366d193ebf33b Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 19 Jan 2001 00:14:42 +0000 Subject: More tweaking... skip separator characters after the namespace character. * camel-store.c (camel_folder_info_build): More tweaking... skip separator characters after the namespace character. (Gets rid of the shell folder registration warning some people have had with IMAP) * providers/imap/camel-imap-store.c (imap_connect): I'm sure there was some clever reason I was storing the flags of the folder in the hash table rather than just "1", but I don't remember what it was now. Anyway, since we only ever test NULL/non-NULL, store 1, since flags is sometimes 0. svn path=/trunk/; revision=7628 --- camel/providers/imap/camel-imap-store.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'camel/providers/imap') diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c index 9d6412eefa..dd0ba72964 100644 --- a/camel/providers/imap/camel-imap-store.c +++ b/camel/providers/imap/camel-imap-store.c @@ -414,7 +414,7 @@ imap_connect (CamelService *service, CamelException *ex) continue; } g_hash_table_insert (store->subscribed_folders, name, - GINT_TO_POINTER (flags)); + GINT_TO_POINTER (1)); } camel_imap_response_free (response); -- cgit v1.2.3