diff src/main.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 11b93d0791db
children 0bea79d87065
line wrap: on
line diff
--- a/src/main.c	Sat Nov 15 19:13:43 2008 +0000
+++ b/src/main.c	Sat Nov 15 20:01:25 2008 +0000
@@ -450,7 +450,7 @@
 
 	log_printf(_("Creating %s dir:%s\n"), GQ_APPNAME, path);
 
-	if (!mkdir_utf8(path, 0755))
+	if (!recursive_mkdir_if_not_exists(path, 0755))
 		{
 		log_printf(_("Could not create dir:%s\n"), path);
 		}