aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_procs.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_procs.c')
-rw-r--r--plugins/check_procs.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/check_procs.c b/plugins/check_procs.c
index 2cf550cc..3671559b 100644
--- a/plugins/check_procs.c
+++ b/plugins/check_procs.c
@@ -202,9 +202,8 @@ main (int argc, char **argv)
cols = sscanf (input_buffer, PS_FORMAT, PS_VARLIST);
/* Zombie processes do not give a procprog command */
- /* - would they give other columns? */
- if ( cols == 3 && strstr(procstat, zombie) ) {
- cols = 4;
+ if ( cols == 6 && strstr(procstat, zombie) ) {
+ cols = 7;
}
if ( cols >= 7 ) {
found++;