From ec04e0fa180e0ad7c3ba118c2e40bb56663b3903 Mon Sep 17 00:00:00 2001 From: graham.gower Date: Sun, 15 Nov 2009 17:44:38 -0500 Subject: Don't send the gzunp_pid SIGTERM. Waiting for exit should be sufficient. git-svn-id: http://opkg.googlecode.com/svn/trunk@310 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- (limited to 'libbb') diff --git a/libbb/gz_open.c b/libbb/gz_open.c index 3107af9..330ba60 100644 --- a/libbb/gz_open.c +++ b/libbb/gz_open.c @@ -56,10 +56,6 @@ extern FILE *gz_open(FILE *compressed_file, int *pid) extern void gz_close(int gunzip_pid) { - if (kill(gunzip_pid, SIGTERM) == -1) { - perror_msg_and_die("%s: kill(gunzip_pid)", __FUNCTION__); - } - if (waitpid(gunzip_pid, NULL, 0) == -1) { perror_msg("%s wait", __FUNCTION__); } -- cgit v0.9.1