aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-uid-cache.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-uid-cache.c')
-rw-r--r--camel/camel-uid-cache.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/camel/camel-uid-cache.c b/camel/camel-uid-cache.c
index 5bb616b304..c31c2761b2 100644
--- a/camel/camel-uid-cache.c
+++ b/camel/camel-uid-cache.c
@@ -32,9 +32,8 @@
#include <sys/stat.h>
#include <unistd.h>
-#include "camel-io.h"
-#include "camel-store.h" /* for camel_mkdir_hier */
#include "camel-uid-cache.h"
+#include "camel-file-utils.h"
struct _uid_state {
int level;
@@ -61,7 +60,7 @@ camel_uid_cache_new (const char *filename)
int fd, i;
dirname = g_path_get_dirname (filename);
- if (camel_mkdir_hier (dirname, 0777) == -1) {
+ if (camel_mkdir (dirname, 0777) == -1) {
g_free (dirname);
return NULL;
}