summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-text/xdvik/files/xdvik-22.84.16-open-mode.patch')
-rw-r--r--app-text/xdvik/files/xdvik-22.84.16-open-mode.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/app-text/xdvik/files/xdvik-22.84.16-open-mode.patch b/app-text/xdvik/files/xdvik-22.84.16-open-mode.patch
deleted file mode 100644
index 76ee267dc1a3..000000000000
--- a/app-text/xdvik/files/xdvik-22.84.16-open-mode.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -pruN xdvik-22.84.14.orig/texk/xdvik/util.c xdvik-22.84.14/texk/xdvik/util.c
---- xdvik-22.84.14.orig/texk/xdvik/util.c 2009-09-02 21:30:39.812675433 +0200
-+++ xdvik-22.84.14/texk/xdvik/util.c 2008-05-03 21:45:10.000000000 +0200
-@@ -273,7 +273,7 @@ try_open_mode(const char *fname, int fla
- int fd = open(fname, flags, mode);
- if (fd < 0 && (errno == EMFILE || errno == ENFILE)) {
- close_a_file();
-- fd = open(fname, flags);
-+ fd = open(fname, flags, mode);
- }
- return fd;
- }