From 8bbe0f34af2bd9906012106d8ee27187f05b6a15 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Mon, 7 Jul 2003 19:18:57 +0000 Subject: Updated for string-utils namespace changes. 2003-07-07 Jeffrey Stedfast * camel-session.c (camel_session_init): Updated for string-utils namespace changes. * camel-provider.c: Updated for string-utils namespace changes. * camel-mime-part.c (init_header_name_table): Updated for string-utils namespace changes. * camel-mime-message.c (camel_mime_message_class_init): Updated for string-utils namespace changes. (camel_mime_message_init): Same. * camel-mime-filter-enriched.c (camel_mime_filter_enriched_class_init): Updated for string-utils namespace changes. * camel-folder-summary.c (camel_folder_summary_init): Updated for string-utils namespace changes. * camel-string-utils.[c,h]: Renamed from string-utils.[c,h] and also namespaced all functions. svn path=/trunk/; revision=21751 --- camel/camel-provider.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'camel/camel-provider.c') diff --git a/camel/camel-provider.c b/camel/camel-provider.c index 0d096a9f33..9beacc02f0 100644 --- a/camel/camel-provider.c +++ b/camel/camel-provider.c @@ -42,7 +42,7 @@ #include "camel-provider.h" #include "camel-exception.h" -#include "string-utils.h" +#include "camel-string-utils.h" /** @@ -66,12 +66,12 @@ camel_provider_init (void) struct dirent *d; char *p, *name, buf[80]; - providers = g_hash_table_new (g_strcase_hash, g_strcase_equal); + providers = g_hash_table_new (camel_strcase_hash, camel_strcase_equal); dir = opendir (CAMEL_PROVIDERDIR); if (!dir) { g_error ("Could not open camel provider directory: %s", - strerror (errno)); + g_strerror (errno)); return NULL; } @@ -86,7 +86,7 @@ camel_provider_init (void) fp = fopen (name, "r"); if (!fp) { g_warning ("Could not read provider info file %s: %s", - name, strerror (errno)); + name, g_strerror (errno)); g_free (name); continue; } -- cgit v1.2.3