diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-04-07 12:41:40 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-04-07 12:41:40 +0000 |
commit | 558ae6ac98d9351150f42bffd2c055fa9d1831bb (patch) | |
tree | 6c6559f3df75e09a6b139528a35f3da6539ac342 /gtk/updateiconcache.c | |
parent | de2d6b97c9655bf9d25c413246b9a51df386ec76 (diff) | |
download | gtk+-558ae6ac98d9351150f42bffd2c055fa9d1831bb.tar.gz |
Return TRUE if the cache is newer than the directory. (#172852, Jacob
2005-04-07 Matthias Clasen <mclasen@redhat.com>
* gtk/updateiconcache.c (is_cache_up_to_date): Return
TRUE if the cache is newer than the directory. (#172852,
Jacob Kroon)
Diffstat (limited to 'gtk/updateiconcache.c')
-rw-r--r-- | gtk/updateiconcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/updateiconcache.c b/gtk/updateiconcache.c index 8063f467a0..82aa18d539 100644 --- a/gtk/updateiconcache.c +++ b/gtk/updateiconcache.c @@ -78,7 +78,7 @@ is_cache_up_to_date (const gchar *path) } /* Check mtime */ - return cache_stat.st_mtime <= path_stat.st_mtime; + return cache_stat.st_mtime >= path_stat.st_mtime; } typedef struct |