aboutsummaryrefslogtreecommitdiff
path: root/procps/kill.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-10-24 05:00:29 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-10-24 05:00:29 +0000
commit1e2799601614452a40df7862e6ca180ecb08c04d (patch)
tree153a573095afac8d8d0ea857759ecabd77fb28b7 /procps/kill.c
parent47f91d1f7fc06cf27e2a6c3c2ada99226ba50cb9 (diff)
downloadbusybox-w32-1e2799601614452a40df7862e6ca180ecb08c04d.tar.gz
busybox-w32-1e2799601614452a40df7862e6ca180ecb08c04d.tar.bz2
busybox-w32-1e2799601614452a40df7862e6ca180ecb08c04d.zip
Major rework of the directory structure and the entire build system.
-Erik git-svn-id: svn://busybox.net/trunk/busybox@3561 69ca8d6d-28ef-0310-b511-8ec308f3f277
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();