summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-fs/avfs/files/avfs-0.9.8-gcc43_fix_open_missing_mode.patch')
-rw-r--r--sys-fs/avfs/files/avfs-0.9.8-gcc43_fix_open_missing_mode.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/sys-fs/avfs/files/avfs-0.9.8-gcc43_fix_open_missing_mode.patch b/sys-fs/avfs/files/avfs-0.9.8-gcc43_fix_open_missing_mode.patch
deleted file mode 100644
index f3ef83a7f31c..000000000000
--- a/sys-fs/avfs/files/avfs-0.9.8-gcc43_fix_open_missing_mode.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- modules/urar.c 2007-05-14 20:21:23.000000000 +0200
-+++ modules/urar.c 2009-02-09 13:48:56.780225932 +0100
-@@ -587,7 +587,7 @@
- if(res < 0)
- return res;
-
-- fd = open(tmpfile, O_RDWR | O_CREAT | O_TRUNC);
-+ fd = open(tmpfile, O_RDWR | O_CREAT | O_TRUNC, 0644);
- if(fd == -1) {
- res = -errno;
- av_log(AVLOG_ERROR, "RAR: Could not open %s: %s", tmpfile,