projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8fd3712
)
ash: fix kill -l (by Mats Erik Andersson <mats.andersson64@comhem.se>)
author
Denis Vlasenko
<vda.linux@googlemail.com>
Wed, 11 Apr 2007 20:43:31 +0000
(20:43 -0000)
committer
Denis Vlasenko
<vda.linux@googlemail.com>
Wed, 11 Apr 2007 20:43:31 +0000
(20:43 -0000)
shell/ash.c
patch
|
blob
|
history
diff --git
a/shell/ash.c
b/shell/ash.c
index bebfec8f58ca0e792d5a92e09a70863c91323547..f8207a6ccb64607ef8a550b5a00c678234f2ca2e 100644
(file)
--- 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;