aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-11 20:43:31 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-11 20:43:31 +0000
commitd7c8196c1bba74d1e27ac9cb5e2eb57413daa463 (patch)
tree86f61ad347703bb0e5251b250952ce8eb7513eb1
parent8fd371276f2485887bb5182671169f4d0849d67c (diff)
downloadbusybox-d7c8196c1bba74d1e27ac9cb5e2eb57413daa463.tar.gz
ash: fix kill -l (by Mats Erik Andersson <mats.andersson64@comhem.se>)
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index bebfec8f5..f8207a6cc 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -3573,7 +3573,7 @@ killcmd(int argc, char **argv)
if (!*argv) {
for (i = 1; i < NSIG; i++) {
name = get_signame(i);
- if (isdigit(*name))
+ if (!isdigit(*name))
out1fmt(snlfmt, name);
}
return 0;