From: Denis Vlasenko Date: Wed, 11 Apr 2007 20:43:31 +0000 (-0000) Subject: ash: fix kill -l (by Mats Erik Andersson ) X-Git-Tag: 1_6_0~178 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d7c8196c1bba74d1e27ac9cb5e2eb57413daa463;p=oweals%2Fbusybox.git ash: fix kill -l (by Mats Erik Andersson ) --- 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;