summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--THANKS.in1
-rw-r--r--plugins/check_procs.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/THANKS.in b/THANKS.in
index c788bac..3644fe1 100644
--- a/THANKS.in
+++ b/THANKS.in
@@ -222,3 +222,4 @@ Ask Bjoern Hansen
222Daniel Bimschas 222Daniel Bimschas
223Aurelien Bompard 223Aurelien Bompard
224Christoph Schell 224Christoph Schell
225Andrew Elwell
diff --git a/plugins/check_procs.c b/plugins/check_procs.c
index 2e28328..f5dc45d 100644
--- a/plugins/check_procs.c
+++ b/plugins/check_procs.c
@@ -185,7 +185,7 @@ main (int argc, char **argv)
185 cols = sscanf (input_line, PS_FORMAT, PS_VARLIST); 185 cols = sscanf (input_line, PS_FORMAT, PS_VARLIST);
186 186
187 /* Zombie processes do not give a procprog command */ 187 /* Zombie processes do not give a procprog command */
188 if ( cols == (expected_cols - 1) && strstr(procstat, zombie) ) { 188 if ( cols < expected_cols && strstr(procstat, zombie) ) {
189 cols = expected_cols; 189 cols = expected_cols;
190 } 190 }
191 if ( cols >= expected_cols ) { 191 if ( cols >= expected_cols ) {