From b18740932759391b5cbdd20fe0a05e86b155e6f1 Mon Sep 17 00:00:00 2001 From: "A. Walton" Date: Mon, 14 Jul 2008 08:16:40 +0000 Subject: Use the GLib gstdio functions here, suggested in bug 542819 by Thadeu Lima 2008-07-14 A. Walton * libnautilus-private/nautilus-emblem-utils.c (nautilus_emblem_install_custom_emblem), (nautilus_emblem_can_remove_emblem): Use the GLib gstdio functions here, suggested in bug 542819 by Thadeu Lima de Souza Cascardo. svn path=/trunk/; revision=14359 --- ChangeLog | 8 ++++++++ libnautilus-private/nautilus-emblem-utils.c | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 39d092479..eaff1e6c0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-07-14 A. Walton + + * libnautilus-private/nautilus-emblem-utils.c + (nautilus_emblem_install_custom_emblem), + (nautilus_emblem_can_remove_emblem): + Use the GLib gstdio functions here, suggested in bug 542819 + by Thadeu Lima de Souza Cascardo. + 2008-07-13 Christian Neumair * libnautilus-private/nautilus-file.c: diff --git a/libnautilus-private/nautilus-emblem-utils.c b/libnautilus-private/nautilus-emblem-utils.c index 2707281ec..454c7ebb7 100644 --- a/libnautilus-private/nautilus-emblem-utils.c +++ b/libnautilus-private/nautilus-emblem-utils.c @@ -307,7 +307,7 @@ nautilus_emblem_install_custom_emblem (GdkPixbuf *pixbuf, } /* Touch the toplevel dir */ - if (stat (stat_dir, &stat_buf) == 0) { + if (g_stat (stat_dir, &stat_buf) == 0) { ubuf.actime = stat_buf.st_atime; ubuf.modtime = time (NULL); utime (stat_dir, &ubuf); @@ -328,7 +328,7 @@ nautilus_emblem_can_remove_emblem (const char *keyword) path = g_strdup_printf ("%s/.icons/hicolor/48x48/emblems/emblem-%s.png", g_get_home_dir (), keyword); - if (access (path, F_OK|W_OK) != 0) { + if (g_access (path, F_OK|W_OK) != 0) { ret = FALSE; } -- cgit v1.2.1