diff options
author | Denis Vlasenko | 2006-10-08 12:49:22 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-08 12:49:22 +0000 |
commit | 1385899416a4396385ad421ae1f532be7103738a (patch) | |
tree | fc4d14a910593d1235318bb36abe5e9f72d2039e /procps/kill.c | |
parent | 5625415085e68ac5e150f54e685417c866620d76 (diff) | |
download | busybox-1385899416a4396385ad421ae1f532be7103738a.zip busybox-1385899416a4396385ad421ae1f532be7103738a.tar.gz |
attempt to regularize atoi mess.
Diffstat (limited to 'procps/kill.c')
-rw-r--r-- | procps/kill.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/procps/kill.c b/procps/kill.c index 2408a70..b29f61b 100644 --- a/procps/kill.c +++ b/procps/kill.c @@ -47,7 +47,7 @@ int kill_main(int argc, char **argv) } else { /* -l <sig list> */ while ((arg = *++argv)!=NULL) { if (isdigit(arg[0])) { - signo = atoi(arg); + signo = xatoi_u(arg); name = get_signame(signo); } else { signo = get_signum(arg); @@ -140,7 +140,7 @@ do_it_now: while (arg) { if (!isdigit(arg[0]) && arg[0]!='-') bb_error_msg_and_die("bad pid '%s'", arg); - pid = strtol(arg, NULL, 0); + pid = xatou(arg); /* FIXME: better overflow check? */ if (kill(pid, signo)!=0) { bb_perror_msg("cannot kill pid %ld", (long)pid); |