diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2003-04-07 23:40:33 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2003-04-07 23:40:33 (GMT) |
commit | 7f2b0c8b5fda2d030f1e6534fc5d115eaf64b2b8 (patch) | |
tree | 70a100dc92b964bb7a9f4dc1568cd4f9e0b61d71 | |
parent | 606da92af4d87b3841cf06873f8ddf2c7cffda14 (diff) | |
download | monitoring-plugins-7f2b0c8b5fda2d030f1e6534fc5d115eaf64b2b8.tar.gz |
Fixed zombie processes
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@476 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | plugins/check_procs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/check_procs.c b/plugins/check_procs.c index 2cf550c..3671559 100644 --- a/plugins/check_procs.c +++ b/plugins/check_procs.c | |||
@@ -202,9 +202,8 @@ main (int argc, char **argv) | |||
202 | cols = sscanf (input_buffer, PS_FORMAT, PS_VARLIST); | 202 | cols = sscanf (input_buffer, PS_FORMAT, PS_VARLIST); |
203 | 203 | ||
204 | /* Zombie processes do not give a procprog command */ | 204 | /* Zombie processes do not give a procprog command */ |
205 | /* - would they give other columns? */ | 205 | if ( cols == 6 && strstr(procstat, zombie) ) { |
206 | if ( cols == 3 && strstr(procstat, zombie) ) { | 206 | cols = 7; |
207 | cols = 4; | ||
208 | } | 207 | } |
209 | if ( cols >= 7 ) { | 208 | if ( cols >= 7 ) { |
210 | found++; | 209 | found++; |