commit | f70f6cef393c1cc51ec6cabfc51cdf6c12d95286 | [log] [tgz] |
---|---|---|
author | Glenn L McGrath <bug1@ihug.co.nz> | Wed Apr 11 15:09:30 2001 +0000 |
committer | Glenn L McGrath <bug1@ihug.co.nz> | Wed Apr 11 15:09:30 2001 +0000 |
tree | 7d1d3505062ba800a1560709699d8262eb8a0090 | |
parent | 48081f81bda9108672fa04fe57b3921cb24ba4b2 [diff] [blame] |
Disable sigterm
diff --git a/libbb/unzip.c b/libbb/unzip.c index 576fe34..b843ec8 100644 --- a/libbb/unzip.c +++ b/libbb/unzip.c
@@ -912,9 +912,9 @@ (void) signal(SIGINT, (sig_type) abort_gzip); } #ifdef SIGTERM - if (signal(SIGTERM, SIG_IGN) != SIG_IGN) { - (void) signal(SIGTERM, (sig_type) abort_gzip); - } +// if (signal(SIGTERM, SIG_IGN) != SIG_IGN) { +// (void) signal(SIGTERM, (sig_type) abort_gzip); +// } #endif #ifdef SIGHUP if (signal(SIGHUP, SIG_IGN) != SIG_IGN) {