Updating branch refs/heads/master
         to 4e25f72768ef5dcebbefccf7281e358dc2c1543b (commit)
       from 8f0d632ef5c95f81f5c02078e6969ff4b28273a5 (commit)

commit 4e25f72768ef5dcebbefccf7281e358dc2c1543b
Author: Christian Dywan <christ...@twotoasts.de>
Date:   Mon Dec 21 16:17:35 2009 +0100

    Fix two typos from replacing g_file_test with g_access in sokoke

 midori/sokoke.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/midori/sokoke.c b/midori/sokoke.c
index d6377ac..b734cde 100644
--- a/midori/sokoke.c
+++ b/midori/sokoke.c
@@ -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);
     }
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits

Reply via email to