summaryrefslogtreecommitdiffstats
path: root/plugins/check_ssh.c
diff options
context:
space:
mode:
authorM. Sean Finney <seanius@users.sourceforge.net>2005-04-11 18:02:40 (GMT)
committerM. Sean Finney <seanius@users.sourceforge.net>2005-04-11 18:02:40 (GMT)
commitafca8db23ef32a662b861cae64a321e28592177f (patch)
treedcc99c4e88b7540da072dd1de4a5bb9b0a483671 /plugins/check_ssh.c
parent8dea00f889a5dbf1b5f67e6efafb75170993cb5d (diff)
downloadmonitoring-plugins-afca8db23ef32a662b861cae64a321e28592177f.tar.gz
properly call close() on the ssh connection before exiting.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1160 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_ssh.c')
-rw-r--r--plugins/check_ssh.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/check_ssh.c b/plugins/check_ssh.c
index 7b7bc8f..5617add 100644
--- a/plugins/check_ssh.c
+++ b/plugins/check_ssh.c
@@ -240,6 +240,7 @@ ssh_connect (char *haddr, int hport, char *remote_version)
240 printf 240 printf
241 (_("SSH OK - %s (protocol %s)\n"), 241 (_("SSH OK - %s (protocol %s)\n"),
242 ssh_server, ssh_proto); 242 ssh_server, ssh_proto);
243 close(sd);
243 exit (STATE_OK); 244 exit (STATE_OK);
244 } 245 }
245} 246}