diff src/thumb.c @ 1148:95860439070b

Replace cache_ensure_dir_exists() by new recursive_mkdir_if_not_exists().
author zas_
date Sat, 15 Nov 2008 20:01:25 +0000
parents 1e2de04c6fc4
children 475986f8f298
line wrap: on
line diff
--- a/src/thumb.c	Sat Nov 15 19:13:43 2008 +0000
+++ b/src/thumb.c	Sat Nov 15 20:01:25 2008 +0000
@@ -50,7 +50,7 @@
 
 	cache_dir = cache_get_location(CACHE_TYPE_THUMB, tl->fd->path, FALSE, &mode);
 
-	if (cache_ensure_dir_exists(cache_dir, mode))
+	if (recursive_mkdir_if_not_exists(cache_dir, mode))
 		{
 		gchar *cache_path;
 		gchar *pathl;