diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2004-01-05 20:16:54 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2004-01-05 20:16:54 +0800 |
commit | b8ca86f384932070d4312e17535e98171884dd82 (patch) | |
tree | 0b0502fb75daac4aebe23883598a8c4d7070009e | |
parent | 02f3533f7430fcdff6893fa2fc7c3f20d52aeed1 (diff) | |
download | gsoc2013-evolution-b8ca86f384932070d4312e17535e98171884dd82.tar gsoc2013-evolution-b8ca86f384932070d4312e17535e98171884dd82.tar.gz gsoc2013-evolution-b8ca86f384932070d4312e17535e98171884dd82.tar.bz2 gsoc2013-evolution-b8ca86f384932070d4312e17535e98171884dd82.tar.lz gsoc2013-evolution-b8ca86f384932070d4312e17535e98171884dd82.tar.xz gsoc2013-evolution-b8ca86f384932070d4312e17535e98171884dd82.tar.zst gsoc2013-evolution-b8ca86f384932070d4312e17535e98171884dd82.zip |
renamed from imap_*.
2004-01-05 Rodrigo Moya <rodrigo@ximian.com>
* providers/groupwise/camel-groupwise-provider.c (groupwise_url_hash,
groupwise_url_equal): renamed from imap_*.
svn path=/trunk/; revision=24044
-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; |