From 2a37f6b620ba5b498b4bdd67332421f18118b600275cb0a03c5e8da02f0a8a62 Mon Sep 17 00:00:00 2001 From: Kristyna Streitova Date: Thu, 20 Apr 2017 14:12:41 +0000 Subject: [PATCH] Accepting request 489623 from home:kstreitova:branches:Base:System - remove tar-1.26-remove_O_NONBLOCK.patch file OBS-URL: https://build.opensuse.org/request/show/489623 OBS-URL: https://build.opensuse.org/package/show/Base:System/tar?expand=0&rev=81 --- tar-1.26-remove_O_NONBLOCK.patch | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 tar-1.26-remove_O_NONBLOCK.patch diff --git a/tar-1.26-remove_O_NONBLOCK.patch b/tar-1.26-remove_O_NONBLOCK.patch deleted file mode 100644 index 2f594ae..0000000 --- a/tar-1.26-remove_O_NONBLOCK.patch +++ /dev/null @@ -1,21 +0,0 @@ -Index: tar-1.26/src/tar.c -=================================================================== ---- tar-1.26.orig/src/tar.c -+++ tar-1.26/src/tar.c -@@ -2467,10 +2467,14 @@ decode_options (int argc, char **argv) - - /* Flags for accessing files to be read from or copied into. POSIX says - O_NONBLOCK has unspecified effect on most types of files, but in -- practice it never harms and sometimes helps. */ -+ practice it never harms and sometimes helps. -+ -+ It seems in fact that in practice it never helps and sometimes harms. -+ Removing again. -+ */ - { - int base_open_flags = -- (O_BINARY | O_CLOEXEC | O_NOCTTY | O_NONBLOCK -+ (O_BINARY | O_CLOEXEC | O_NOCTTY - | (dereference_option ? 0 : O_NOFOLLOW) - | (atime_preserve_option == system_atime_preserve ? O_NOATIME : 0)); - open_read_flags = O_RDONLY | base_open_flags;