summaryrefslogtreecommitdiff
path: root/libnautilus-private
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2001-06-06 22:01:32 +0000
committerDarin Adler <darin@src.gnome.org>2001-06-06 22:01:32 +0000
commite7a1ebe3b8eb73e68f6a64649c80664f82f8d41a (patch)
tree0878bcde8abba061920cb9efb0951419c49ac1c2 /libnautilus-private
parentdcfc0e1c4b3953959fc8ce070e3fd69cb4012034 (diff)
downloadnautilus-e7a1ebe3b8eb73e68f6a64649c80664f82f8d41a.tar.gz
Oops, a few of my changes were still in the editor. More places where we
* components/music/nautilus-music-view.c: (play_current_file): * libnautilus-private/nautilus-icon-factory.c: (get_cache_time): * src/nautilus-window-menus.c: (get_static_bookmarks_file_path): Oops, a few of my changes were still in the editor. More places where we should follow links.
Diffstat (limited to 'libnautilus-private')
-rw-r--r--libnautilus-private/nautilus-icon-factory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libnautilus-private/nautilus-icon-factory.c b/libnautilus-private/nautilus-icon-factory.c
index 3138d648b..9084b8ef6 100644
--- a/libnautilus-private/nautilus-icon-factory.c
+++ b/libnautilus-private/nautilus-icon-factory.c
@@ -1837,7 +1837,7 @@ get_cache_time (const char *file_uri, time_t *cache_time)
/* Gather the info and then compare modification times. */
file_info = gnome_vfs_file_info_new ();
- result = gnome_vfs_get_file_info (file_uri, file_info, GNOME_VFS_FILE_INFO_DEFAULT);
+ result = gnome_vfs_get_file_info (file_uri, file_info, GNOME_VFS_FILE_INFO_FOLLOW_LINKS);
if (result == GNOME_VFS_OK) {
*cache_time = file_info->mtime;
}