aboutsummaryrefslogtreecommitdiff
path: root/patches/0003-pax-Set-listf-to-stderr-in-main.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/0003-pax-Set-listf-to-stderr-in-main.patch')
-rw-r--r--patches/0003-pax-Set-listf-to-stderr-in-main.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/patches/0003-pax-Set-listf-to-stderr-in-main.patch b/patches/0003-pax-Set-listf-to-stderr-in-main.patch
deleted file mode 100644
index 7a8ec25..0000000
--- a/patches/0003-pax-Set-listf-to-stderr-in-main.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From e2ca2e2a530e61e8af65dca829aa1fcad5c59a7d Mon Sep 17 00:00:00 2001
-From: Michael Forney <mforney@mforney.org>
-Date: Mon, 18 Apr 2016 00:13:51 -0700
-Subject: [PATCH] pax: Set listf to stderr in main
-
----
- bin/pax/pax.c | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/bin/pax/pax.c b/bin/pax/pax.c
-index f6b3634369a..3d50e051075 100644
---- a/bin/pax/pax.c
-+++ b/bin/pax/pax.c
-@@ -93,7 +93,7 @@ char *dirptr; /* destination dir in a copy */
- char *argv0; /* root of argv[0] */
- enum op_mode op_mode; /* what program are we acting as? */
- sigset_t s_mask; /* signal mask for cleanup critical sect */
--FILE *listf = stderr; /* file pointer to print file list to */
-+FILE *listf; /* file pointer to print file list to */
- int listfd = STDERR_FILENO; /* fd matching listf, for sighandler output */
- char *tempfile; /* tempfile to use for mkstemp(3) */
- char *tempbase; /* basename of tempfile to use for mkstemp(3) */
-@@ -224,6 +224,8 @@ main(int argc, char **argv)
- char *tmpdir;
- size_t tdlen;
-
-+ listf = stderr;
-+
- /*
- * Keep a reference to cwd, so we can always come back home.
- */
---
-2.19.0
-