move llist_find_str from modutils to libbb

This commit is contained in:
Denis Vlasenko
2009-04-13 20:52:00 +00:00
parent 4144504912
commit 0b791d9a97
6 changed files with 17 additions and 34 deletions

View File

@ -35,12 +35,12 @@ int pidof_main(int argc UNUSED_PARAM, char **argv)
/* fill omit list. */
{
llist_t *omits_p = omits;
while (omits_p) {
while (1) {
omits_p = llist_find_str(omits_p, "%PPID");
if (!omits_p)
break;
/* are we asked to exclude the parent's process ID? */
if (strcmp(omits_p->data, "%PPID") == 0) {
omits_p->data = utoa((unsigned)getppid());
}
omits_p = omits_p->link;
omits_p->data = utoa((unsigned)getppid());
}
}
#endif