aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-session.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-09-29 06:38:08 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-09-29 06:38:08 +0800
commit61e47e195ea3084227b2a986e055bfdb7e18444b (patch)
treeaf5198b907c8cfaed97945b370e5b41ae467fedf /camel/camel-session.c
parente77919dfff8b7e026cb259572589b46d4a3a6e25 (diff)
downloadgsoc2013-evolution-61e47e195ea3084227b2a986e055bfdb7e18444b.tar
gsoc2013-evolution-61e47e195ea3084227b2a986e055bfdb7e18444b.tar.gz
gsoc2013-evolution-61e47e195ea3084227b2a986e055bfdb7e18444b.tar.bz2
gsoc2013-evolution-61e47e195ea3084227b2a986e055bfdb7e18444b.tar.lz
gsoc2013-evolution-61e47e195ea3084227b2a986e055bfdb7e18444b.tar.xz
gsoc2013-evolution-61e47e195ea3084227b2a986e055bfdb7e18444b.tar.zst
gsoc2013-evolution-61e47e195ea3084227b2a986e055bfdb7e18444b.zip
Init the nntp url hash and url_equal functions.
2001-09-28 Jeffrey Stedfast <fejj@ximian.com> * providers/nntp/camel-nntp-provider.c (camel_provider_module_init): Init the nntp url hash and url_equal functions. * providers/sendmail/camel-sendmail-provider.c (camel_provider_module_init): Init the sendmail url hash and url_equal functions. * providers/smtp/camel-smtp-provider.c (camel_provider_module_init): Init the smtp url hash and url_equal functions. * providers/pop3/camel-pop3-provider.c (camel_provider_module_init): Init the pop3 url hash and url_equal functions. * providers/imap/camel-imap-provider.c (camel_provider_module_init): Init the imap url hash and url_equal functions. * providers/local/camel-local-provider.c (camel_provider_module_init): Init the local url hash and url_equal functions. * camel-session.c (camel_session_class_init): Init the vfolder url hash and url_equal functions. * camel-provider.h: Added url_hash and url_equal function pointers to the structure. * camel-vtrash-folder.c (vtrash_move_messages_to): Oops, a CamelFolder is not a CamelFolderClass. svn path=/trunk/; revision=13237
Diffstat (limited to 'camel/camel-session.c')
-rw-r--r--camel/camel-session.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/camel/camel-session.c b/camel/camel-session.c
index facedb9400..e30f82d955 100644
--- a/camel/camel-session.c
+++ b/camel/camel-session.c
@@ -99,7 +99,7 @@ camel_session_init (CamelSession *session)
session->priv->thread_id = 1;
session->priv->thread_active = g_hash_table_new(NULL, NULL);
session->priv->thread_queue = NULL;
-#endif
+#endif
}
static gboolean
@@ -151,10 +151,12 @@ camel_session_class_init (CamelSessionClass *camel_session_class)
camel_session_class->thread_queue = session_thread_queue;
camel_session_class->thread_wait = session_thread_wait;
#endif
-
+
if (vee_provider.service_cache == NULL) {
vee_provider.object_types[CAMEL_PROVIDER_STORE] = camel_vee_store_get_type ();
vee_provider.service_cache = g_hash_table_new (camel_url_hash, camel_url_equal);
+ vee_provider.url_hash = camel_url_hash;
+ vee_provider.url_equal = camel_url_equal;
}
}