diff options
author | Michael Kraus <email.kraus@gmail.com> | 2017-09-04 16:36:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-04 16:36:19 +0200 |
commit | 6e67b638f8adeec91ff27bc5b82e5c9d755bc79e (patch) | |
tree | 10c5d787baf88bb9efee725201ac4c244fa8bd52 /plugins | |
parent | b3d39e605ef7ce7da056721c4e2e140966be3530 (diff) | |
download | monitoring-plugins-6e67b638f8adeec91ff27bc5b82e5c9d755bc79e.tar.gz |
Output plugin's stderr to stderr
Output plugin's stderr to stderr and do not exit with WARNING in that case
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/negate.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/negate.c b/plugins/negate.c index b320e356..50f62d33 100644 --- a/plugins/negate.c +++ b/plugins/negate.c @@ -86,11 +86,9 @@ main (int argc, char **argv) result = cmd_run_array (command_line, &chld_out, &chld_err, 0); } if (chld_err.lines > 0) { - printf ("Error output from command:\n"); for (i = 0; i < chld_err.lines; i++) { - printf ("%s\n", chld_err.line[i]); + fprintf (stderr, "%s\n", chld_err.line[i]); } - exit (STATE_WARNING); } /* Return UNKNOWN or worse if no output is returned */ |