diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | plugins/check_by_ssh.c | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -29,6 +29,7 @@ This file documents the major additions and syntax changes between releases. - enforce a full path for the command to run The "negate" utility can now remap custom states Check_radius now supports radiusclient-ng + Check_by_ssh now supports multiline output 1.4.9 4th June 2006 Inclusion of contrib/check_cluster2 as check_cluster with some improvements diff --git a/plugins/check_by_ssh.c b/plugins/check_by_ssh.c index 46d1297f..7306e743 100644 --- a/plugins/check_by_ssh.c +++ b/plugins/check_by_ssh.c @@ -110,7 +110,8 @@ main (int argc, char **argv) * Wrap up quickly and keep the tricks below */ if(!passive) { if (chld_out.lines > skip_stdout) - puts (chld_out.line[skip_stdout]); + for (i = skip_stdout; i < chld_out.lines; i++) + puts (chld_out.line[i]); else printf (_("%s - check_by_ssh: Remote command '%s' returned status %d\n"), state_text(result), remotecmd, result); |