]> spindle.queued.net Git - midori/commitdiff
Fix two typos from replacing g_file_test with g_access in sokoke
authorChristian Dywan <christian@twotoasts.de>
Mon, 21 Dec 2009 15:17:35 +0000 (16:17 +0100)
committerChristian Dywan <christian@twotoasts.de>
Mon, 21 Dec 2009 17:26:49 +0000 (18:26 +0100)
midori/sokoke.c

index d6377ac1b81886f28151c82f43c37d20174f2fdb..b734cdee6bc06b9be44c248d952b42871d7fa71e 100644 (file)
@@ -1287,7 +1287,7 @@ sokoke_find_config_filename (const gchar* folder,
     while ((config_dir = config_dirs[i++]))
     {
         gchar* path = g_build_filename (config_dir, PACKAGE_NAME, folder, filename, NULL);
-        if (g_access (filename, F_OK) == 0)
+        if (g_access (path, F_OK) == 0)
             return path;
         g_free (path);
     }
@@ -1313,7 +1313,7 @@ sokoke_find_data_filename (const gchar* filename)
     while ((data_dir = data_dirs[i++]))
     {
         gchar* path = g_build_filename (data_dir, filename, NULL);
-        if (g_access (filename, F_OK) == 0)
+        if (g_access (path, F_OK) == 0)
             return path;
         g_free (path);
     }