aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-provider.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-07-08 03:18:57 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-07-08 03:18:57 +0800
commit8bbe0f34af2bd9906012106d8ee27187f05b6a15 (patch)
tree5cfa51a91191b20ef2f1f765df6f99611041cae5 /camel/camel-provider.c
parent26709642fa1a39108690aa5295e1726a0861c58c (diff)
downloadgsoc2013-evolution-8bbe0f34af2bd9906012106d8ee27187f05b6a15.tar
gsoc2013-evolution-8bbe0f34af2bd9906012106d8ee27187f05b6a15.tar.gz
gsoc2013-evolution-8bbe0f34af2bd9906012106d8ee27187f05b6a15.tar.bz2
gsoc2013-evolution-8bbe0f34af2bd9906012106d8ee27187f05b6a15.tar.lz
gsoc2013-evolution-8bbe0f34af2bd9906012106d8ee27187f05b6a15.tar.xz
gsoc2013-evolution-8bbe0f34af2bd9906012106d8ee27187f05b6a15.tar.zst
gsoc2013-evolution-8bbe0f34af2bd9906012106d8ee27187f05b6a15.zip
Updated for string-utils namespace changes.
2003-07-07 Jeffrey Stedfast <fejj@ximian.com> * 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
Diffstat (limited to 'camel/camel-provider.c')
-rw-r--r--camel/camel-provider.c8
1 files changed, 4 insertions, 4 deletions
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;
}