diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-07-05 16:27:34 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-07-05 16:27:34 +0000 |
commit | 9abe3b767e0e26f425b25d02d9ee85d585f7344a (patch) | |
tree | e0c9124998c072c304a28dd89652c3768b1a9baa /libbb | |
parent | 4f06e43e505742113fc7cec3bfcc31db7ade5dcd (diff) | |
download | busybox-w32-9abe3b767e0e26f425b25d02d9ee85d585f7344a.tar.gz busybox-w32-9abe3b767e0e26f425b25d02d9ee85d585f7344a.tar.bz2 busybox-w32-9abe3b767e0e26f425b25d02d9ee85d585f7344a.zip |
Fix a stupid thinko, and fix killall to cope with the updated
find_pid_by_name() interface
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@3007 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/find_pid_by_name.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libbb/find_pid_by_name.c b/libbb/find_pid_by_name.c index 57decc69c..7f39dd41c 100644 --- a/libbb/find_pid_by_name.c +++ b/libbb/find_pid_by_name.c | |||
@@ -106,6 +106,7 @@ extern pid_t* find_pid_by_name( char* pidName) | |||
106 | pidList=xrealloc( pidList, sizeof(pid_t)); | 106 | pidList=xrealloc( pidList, sizeof(pid_t)); |
107 | pidList[0]=1; | 107 | pidList[0]=1; |
108 | } else { | 108 | } else { |
109 | pidList=xrealloc( pidList, sizeof(pid_t)); | ||
109 | pidList[0]=-1; | 110 | pidList[0]=-1; |
110 | } | 111 | } |
111 | 112 | ||
@@ -181,6 +182,7 @@ extern pid_t* find_pid_by_name( char* pidName) | |||
181 | pidList=xrealloc( pidList, sizeof(pid_t)); | 182 | pidList=xrealloc( pidList, sizeof(pid_t)); |
182 | pidList[0]=1; | 183 | pidList[0]=1; |
183 | } else { | 184 | } else { |
185 | pidList=xrealloc( pidList, sizeof(pid_t)); | ||
184 | pidList[0]=-1; | 186 | pidList[0]=-1; |
185 | } | 187 | } |
186 | return pidList; | 188 | return pidList; |