From bb2e9d47f3c7c8172836b589292612e5f155f054 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Mon, 25 Nov 2002 22:12:28 +0000 Subject: [PATCH] last_patch_67 from Vladimir N. Oleynik --- procps/kill.c | 18 ++++++++++-------- procps/pidof.c | 7 ++++--- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/procps/kill.c b/procps/kill.c index cf5c412a8..9b31f28d6 100644 --- a/procps/kill.c +++ b/procps/kill.c @@ -132,15 +132,17 @@ do_it_now: if (quiet==0) error_msg( "%s: no process killed", *argv); } else { - for(; *pidList!=0; pidList++) { - if (*pidList==myPid) - continue; - if (kill(*pidList, sig) != 0) { - errors++; - if (quiet==0) - perror_msg( "Could not kill pid '%d'", *pidList); + long *pl; + + for(pl = pidList; *pl !=0 ; pl++) { + if (*pl==myPid) + continue; + if (kill(*pl, sig) != 0) { + errors++; + if (quiet==0) + perror_msg( "Could not kill pid '%d'", *pl); + } } - } } free(pidList); argv++; diff --git a/procps/pidof.c b/procps/pidof.c index 169a92007..8cd1a91c8 100644 --- a/procps/pidof.c +++ b/procps/pidof.c @@ -52,11 +52,12 @@ extern int pidof_main(int argc, char **argv) /* Looks like everything is set to go. */ while(optind < argc) { - long* pidList; + long *pidList; + long *pl; pidList = find_pid_by_name(argv[optind]); - for(; *pidList > 0; pidList++) { - printf("%s%ld", (n++ ? " " : ""), (long)*pidList); + for(pl = pidList; *pl > 0; pl++) { + printf("%s%ld", (n++ ? " " : ""), *pl); fail = 0; if (single_flag) break;