diff options
author | Denis Vlasenko | 2008-07-17 18:39:36 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-07-17 18:39:36 +0000 |
commit | 3b3ca113ed00a6781a28172bb3a6860a5f79ea02 (patch) | |
tree | 7834909b21af2b0fdbb7c3c52dc3fef12ba0c051 /procps/pidof.c | |
parent | 18875bf772d72c9c543be8f9ab46dec451f547ea (diff) | |
download | busybox-3b3ca113ed00a6781a28172bb3a6860a5f79ea02.zip busybox-3b3ca113ed00a6781a28172bb3a6860a5f79ea02.tar.gz |
pidof/killall: allow find_pid_by_name to find running
processes started as scripts_with_name_longer_than_15_bytes.sh
closes bug 4054 (and is generally neat)
Diffstat (limited to 'procps/pidof.c')
-rw-r--r-- | procps/pidof.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/procps/pidof.c b/procps/pidof.c index 2519473..7805044 100644 --- a/procps/pidof.c +++ b/procps/pidof.c @@ -22,7 +22,6 @@ int pidof_main(int argc UNUSED_PARAM, char **argv) unsigned first = 1; unsigned opt; #if ENABLE_FEATURE_PIDOF_OMIT - char ppid_str[sizeof(int)*3 + 1]; llist_t *omits = NULL; /* list of pids to omit */ opt_complementary = "o::"; #endif @@ -39,8 +38,7 @@ int pidof_main(int argc UNUSED_PARAM, char **argv) while (omits_p) { /* are we asked to exclude the parent's process ID? */ if (strcmp(omits_p->data, "%PPID") == 0) { - sprintf(ppid_str, "%u", (unsigned)getppid()); - omits_p->data = ppid_str; + omits_p->data = utoa((unsigned)getppid()); } omits_p = omits_p->link; } |