From 00fa13ff3f2d5b6e2a94c5e948c38616ff7ad37a Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Wed, 1 Jul 2009 15:45:35 -0300 Subject: [PATCH] patch from upstream to restore SIGPIPE default action --- src/tar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tar.c b/src/tar.c index dbffc2a..e10b804 100644 --- a/src/tar.c +++ b/src/tar.c @@ -2454,10 +2454,10 @@ main (int argc, char **argv) obstack_init (&argv_stk); -#ifdef SIGCHLD + /* Ensure default behavior for some signals */ + signal (SIGPIPE, SIG_DFL); /* System V fork+wait does not work if SIGCHLD is ignored. */ signal (SIGCHLD, SIG_DFL); -#endif /* Decode options. */ -- 2.43.0