aboutsummaryrefslogtreecommitdiff
path: root/toys/pending/tar.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2016-02-08 15:24:33 -0600
committerRob Landley <rob@landley.net>2016-02-08 15:24:33 -0600
commit85f54d8e836ac80264111df7d87db6c15eaca558 (patch)
tree65f3fe7b115aa758ebf528575c2a78f1df6e37b2 /toys/pending/tar.c
parent9b14cb6aa57c56080bbbc0db85027c3f834fb06f (diff)
downloadtoybox-85f54d8e836ac80264111df7d87db6c15eaca558.tar.gz
Add xpipe() to lib.
Diffstat (limited to 'toys/pending/tar.c')
-rw-r--r--toys/pending/tar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/pending/tar.c b/toys/pending/tar.c
index c8b6dff8..6140ea5d 100644
--- a/toys/pending/tar.c
+++ b/toys/pending/tar.c
@@ -287,7 +287,7 @@ static void compress_stream(struct archive_handler *tar_hdl)
int pipefd[2];
pid_t cpid;
- if (pipe(pipefd) == -1) error_exit("pipe");
+ xpipe(pipefd);
signal(SIGPIPE, SIG_IGN);
cpid = fork();