diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-11 20:43:31 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-11 20:43:31 +0000 |
commit | d7c8196c1bba74d1e27ac9cb5e2eb57413daa463 (patch) | |
tree | 86f61ad347703bb0e5251b250952ce8eb7513eb1 /shell | |
parent | 8fd371276f2485887bb5182671169f4d0849d67c (diff) | |
download | busybox-d7c8196c1bba74d1e27ac9cb5e2eb57413daa463.tar.gz |
ash: fix kill -l (by Mats Erik Andersson <mats.andersson64@comhem.se>)
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 2 |
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; |