aboutsummaryrefslogtreecommitdiff
path: root/procps/kill.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-10-24 05:00:29 +0000
committerEric Andersen <andersen@codepoet.org>2001-10-24 05:00:29 +0000
commitbdfd0d78bc44e73d693510e70087857785b3b521 (patch)
tree153a573095afac8d8d0ea857759ecabd77fb28b7 /procps/kill.c
parent9260fc5552a3ee52eb95823aa6689d52a1ffd33c (diff)
downloadbusybox-w32-bdfd0d78bc44e73d693510e70087857785b3b521.tar.gz
busybox-w32-bdfd0d78bc44e73d693510e70087857785b3b521.tar.bz2
busybox-w32-bdfd0d78bc44e73d693510e70087857785b3b521.zip
Major rework of the directory structure and the entire build system.
-Erik
Diffstat (limited to 'procps/kill.c')
-rw-r--r--procps/kill.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/procps/kill.c b/procps/kill.c
index 3884ebdf4..8b8a9922c 100644
--- a/procps/kill.c
+++ b/procps/kill.c
@@ -40,7 +40,7 @@ extern int kill_main(int argc, char **argv)
40 int whichApp, sig = SIGTERM; 40 int whichApp, sig = SIGTERM;
41 const char *name; 41 const char *name;
42 42
43#ifdef BB_KILLALL 43#ifdef CONFIG_KILLALL
44 /* Figure out what we are trying to do here */ 44 /* Figure out what we are trying to do here */
45 whichApp = (strcmp(applet_name, "killall") == 0)? KILLALL : KILL; 45 whichApp = (strcmp(applet_name, "killall") == 0)? KILLALL : KILL;
46#else 46#else
@@ -108,7 +108,7 @@ extern int kill_main(int argc, char **argv)
108 argv++; 108 argv++;
109 } 109 }
110 } 110 }
111#ifdef BB_KILLALL 111#ifdef CONFIG_KILLALL
112 else { 112 else {
113 int all_found = TRUE; 113 int all_found = TRUE;
114 pid_t myPid=getpid(); 114 pid_t myPid=getpid();