summaryrefslogtreecommitdiffstats
path: root/plugins/check_ssh.c
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2007-11-09 13:08:43 (GMT)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2007-11-09 13:08:43 (GMT)
commit25624346481067be006ccd4a3b07afcf0cbb96ae (patch)
treed598c8fbbd371257c57e8a6371a4630cad7f0e5c /plugins/check_ssh.c
parentdca25be31acd52ee6a640d7c5150c183b539c762 (diff)
downloadmonitoring-plugins-25624346481067be006ccd4a3b07afcf0cbb96ae.tar.gz
Close the socket on all exits (not just the OK one)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1813 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_ssh.c')
-rw-r--r--plugins/check_ssh.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/check_ssh.c b/plugins/check_ssh.c
index afe44c9..9de7de3 100644
--- a/plugins/check_ssh.c
+++ b/plugins/check_ssh.c
@@ -233,6 +233,7 @@ ssh_connect (char *haddr, int hport, char *remote_version)
233 recv (sd, output, BUFF_SZ, 0); 233 recv (sd, output, BUFF_SZ, 0);
234 if (strncmp (output, "SSH", 3)) { 234 if (strncmp (output, "SSH", 3)) {
235 printf (_("Server answer: %s"), output); 235 printf (_("Server answer: %s"), output);
236 close(sd);
236 exit (STATE_CRITICAL); 237 exit (STATE_CRITICAL);
237 } 238 }
238 else { 239 else {
@@ -252,6 +253,7 @@ ssh_connect (char *haddr, int hport, char *remote_version)
252 printf 253 printf
253 (_("SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n"), 254 (_("SSH WARNING - %s (protocol %s) version mismatch, expected '%s'\n"),
254 ssh_server, ssh_proto, remote_version); 255 ssh_server, ssh_proto, remote_version);
256 close(sd);
255 exit (STATE_WARNING); 257 exit (STATE_WARNING);
256 } 258 }
257 259