diff options
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/providers/groupwise/camel-groupwise-provider.c | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index c44a3fb6aa..23bdd082e0 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2004-01-05 Rodrigo Moya <rodrigo@ximian.com> + + * providers/groupwise/camel-groupwise-provider.c (groupwise_url_hash, + groupwise_url_equal): renamed from imap_*. + 2004-01-05 Not Zed <NotZed@Ximian.com> * camel-tcp-stream-raw.c (socket_connect): check the right return diff --git a/camel/providers/groupwise/camel-groupwise-provider.c b/camel/providers/groupwise/camel-groupwise-provider.c index 605c08d3cf..054f92978e 100644 --- a/camel/providers/groupwise/camel-groupwise-provider.c +++ b/camel/providers/groupwise/camel-groupwise-provider.c @@ -38,9 +38,9 @@ #include "camel-sasl.h" static void add_hash (guint *hash, char *s); -static guint imap_url_hash (gconstpointer key); +static guint groupwise_url_hash (gconstpointer key); static gint check_equal (char *s1, char *s2); -static gint imap_url_equal (gconstpointer a, gconstpointer b); +static gint groupwise_url_equal (gconstpointer a, gconstpointer b); CamelProviderConfEntry groupwise_conf_entries[] = { /* override the labels/defaults of the standard settings */ @@ -115,8 +115,8 @@ camel_provider_module_init (CamelSession *session) groupwise_provider.object_types[CAMEL_PROVIDER_STORE] = camel_imap_store_get_type (); groupwise_provider.object_types[CAMEL_PROVIDER_TRANSPORT] = camel_smtp_transport_get_type (); - groupwise_provider.url_hash = imap_url_hash; - groupwise_provider.url_equal = imap_url_equal; + groupwise_provider.url_hash = groupwise_url_hash; + groupwise_provider.url_equal = groupwise_url_equal; groupwise_provider.authtypes = g_list_prepend (groupwise_provider.authtypes, &camel_groupwise_password_authtype); @@ -131,7 +131,7 @@ add_hash (guint *hash, char *s) } static guint -imap_url_hash (gconstpointer key) +groupwise_url_hash (gconstpointer key) { const CamelURL *u = (CamelURL *)key; guint hash = 0; @@ -161,7 +161,7 @@ check_equal (char *s1, char *s2) } static gint -imap_url_equal (gconstpointer a, gconstpointer b) +groupwise_url_equal (gconstpointer a, gconstpointer b) { const CamelURL *u1 = a, *u2 = b; |