aboutsummaryrefslogtreecommitdiff
path: root/net-p2p/libtorrent/files/patch-src::data::file.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net-p2p/libtorrent/files/patch-src::data::file.cc')
-rw-r--r--net-p2p/libtorrent/files/patch-src::data::file.cc13
1 files changed, 0 insertions, 13 deletions
diff --git a/net-p2p/libtorrent/files/patch-src::data::file.cc b/net-p2p/libtorrent/files/patch-src::data::file.cc
deleted file mode 100644
index e0b3abd2b8fa..000000000000
--- a/net-p2p/libtorrent/files/patch-src::data::file.cc
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/data/file.cc.old Fri Jan 7 14:35:43 2005
-+++ src/data/file.cc Fri Jan 7 14:36:35 2005
-@@ -19,8 +19,9 @@
- (flags & in && flags & out ? O_RDWR :
- (flags & in ? O_RDONLY : 0) |
- (flags & out ? O_WRONLY : 0)) |
--
-+#if defined(Linux)
- (flags & largefile ? O_LARGEFILE : 0) |
-+#endif
- (flags & create ? O_CREAT : 0) |
- (flags & truncate ? O_TRUNC : 0) |
- (flags & nonblock ? O_NONBLOCK : 0),