diff options
author | Wolfgang Karall-Ahlborn <office@karall-edv.at> | 2021-01-03 10:27:44 (GMT) |
---|---|---|
committer | Wolfgang Karall-Ahlborn <office@karall-edv.at> | 2021-01-03 10:27:44 (GMT) |
commit | 8eaccee190734a12763a51aaa8a46f324f6742ec (patch) | |
tree | b8aaa30338ef39da6fa353ef0b4d7fc256588c53 /plugins | |
parent | 180e069169840c11196e9e2028c44493525f1918 (diff) | |
download | monitoring-plugins-8eaccee190734a12763a51aaa8a46f324f6742ec.tar.gz |
check_procs -- exchange needle and haystack in strstr() for proper state match
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_procs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_procs.c b/plugins/check_procs.c index f7917c3..0de6be9 100644 --- a/plugins/check_procs.c +++ b/plugins/check_procs.c | |||
@@ -265,7 +265,7 @@ main (int argc, char **argv) | |||
265 | } | 265 | } |
266 | } | 266 | } |
267 | 267 | ||
268 | if ((options & STAT) && (strstr (statopts, procstat))) | 268 | if ((options & STAT) && (strstr (procstat, statopts))) |
269 | resultsum |= STAT; | 269 | resultsum |= STAT; |
270 | if ((options & ARGS) && procargs && (strstr (procargs, args) != NULL)) | 270 | if ((options & ARGS) && procargs && (strstr (procargs, args) != NULL)) |
271 | resultsum |= ARGS; | 271 | resultsum |= ARGS; |