summaryrefslogtreecommitdiffstats
path: root/devel/gnome-vfs/files/patch-libgnomevfs_gnome-vfs-utils.c
diff options
context:
space:
mode:
author(no author) <(no author)@df743ca5-7f9a-e211-a948-0013205c9059>2004-03-15 05:59:50 +0800
committer(no author) <(no author)@df743ca5-7f9a-e211-a948-0013205c9059>2004-03-15 05:59:50 +0800
commit73cb2357a7c7f905403cf41592bcbd7286fd85ae (patch)
tree2f5e26903a1f136a9e2f54af42475b280a215a6d /devel/gnome-vfs/files/patch-libgnomevfs_gnome-vfs-utils.c
parentfd170dfee433454a5e1f74c295bf23f3835894c0 (diff)
downloadmarcuscom-ports-GNOME_2_6.tar
marcuscom-ports-GNOME_2_6.tar.gz
marcuscom-ports-GNOME_2_6.tar.bz2
marcuscom-ports-GNOME_2_6.tar.lz
marcuscom-ports-GNOME_2_6.tar.xz
marcuscom-ports-GNOME_2_6.tar.zst
marcuscom-ports-GNOME_2_6.zip
This commit was manufactured by cvs2svn to create branch 'GNOME_2_6'.GNOME_2_6
git-svn-id: svn://creme-brulee.marcuscom.com/ports/branches/GNOME_2_6@2058 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/gnome-vfs/files/patch-libgnomevfs_gnome-vfs-utils.c')
-rw-r--r--devel/gnome-vfs/files/patch-libgnomevfs_gnome-vfs-utils.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/devel/gnome-vfs/files/patch-libgnomevfs_gnome-vfs-utils.c b/devel/gnome-vfs/files/patch-libgnomevfs_gnome-vfs-utils.c
deleted file mode 100644
index ab74eb932..000000000
--- a/devel/gnome-vfs/files/patch-libgnomevfs_gnome-vfs-utils.c
+++ /dev/null
@@ -1,31 +0,0 @@
---- libgnomevfs/gnome-vfs-utils.c.orig Sat Mar 13 18:57:02 2004
-+++ libgnomevfs/gnome-vfs-utils.c Sat Mar 13 18:51:21 2004
-@@ -797,8 +797,10 @@
-
- #if HAVE_STATVFS
- statfs_result = statvfs (unescaped_path, &statfs_buffer);
-+#define statfs_bsize f_frsize
- #else
- statfs_result = statfs (unescaped_path, &statfs_buffer);
-+#define statfs_bsize f_bsize
- #endif
-
- if (statfs_result != 0) {
-@@ -831,7 +833,7 @@
- }
- }
-
-- block_size = statfs_buffer.f_bsize;
-+ block_size = statfs_buffer.statfs_bsize;
- free_blocks = statfs_buffer.f_bavail;
-
- *size = block_size * free_blocks;
-@@ -859,7 +861,7 @@
- paths = g_strsplit (gnome_var, ":", 0);
-
- for (temp_paths = paths; *temp_paths != NULL; temp_paths++) {
-- full_filename = g_strconcat (*temp_paths, "/share/pixmaps/", relative_filename, NULL);
-+ full_filename = g_strconcat (*temp_paths, "/share/gnome/pixmaps/", relative_filename, NULL);
- if (g_file_test (full_filename, G_FILE_TEST_EXISTS)) {
- g_strfreev (paths);
- return full_filename;