aboutsummaryrefslogtreecommitdiff
path: root/archival
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-04-07 06:00:07 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-04-07 06:00:07 +0000
commitd383175e820952ac4f761d4d739d04fd718b43d9 (patch)
tree41cb71183c7a9bc0812a51f4a16714e400f63170 /archival
parent8a9842dffbfd6d8ae7ffcf1d56247bd7a71d48dd (diff)
downloadbusybox-w32-d383175e820952ac4f761d4d739d04fd718b43d9.tar.gz
busybox-w32-d383175e820952ac4f761d4d739d04fd718b43d9.tar.bz2
busybox-w32-d383175e820952ac4f761d4d739d04fd718b43d9.zip
Patch to make killall actually kill all PIDs with the specified name,
rather then busylooping trying to kill the first one until it dies. Should be more efficient now, and will only send one signal to each specified process. -Erik git-svn-id: svn://busybox.net/trunk/busybox@437 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'archival')
-rw-r--r--archival/gzip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/gzip.c b/archival/gzip.c
index e275fa274..0a969d8db 100644
--- a/archival/gzip.c
+++ b/archival/gzip.c
@@ -3097,7 +3097,7 @@ local void set_file_type()
3097 bin_freq += dyn_ltree[n++].Freq; 3097 bin_freq += dyn_ltree[n++].Freq;
3098 *file_type = bin_freq > (ascii_freq >> 2) ? BINARY : ASCII; 3098 *file_type = bin_freq > (ascii_freq >> 2) ? BINARY : ASCII;
3099 if (*file_type == BINARY && translate_eol) { 3099 if (*file_type == BINARY && translate_eol) {
3100 errorMsg("-l used on binary file", ""); 3100 errorMsg("-l used on binary file");
3101 } 3101 }
3102} 3102}
3103 3103