diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 00:55:28 +0000 |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 00:55:28 +0000 |
commit | 016d33230eb4fffd7e1f5644ce4901cb4d01f4e3 (patch) | |
tree | 1a6f29dcfd937bccffb66467127613b660d55365 /plugins/check_ssh.c | |
parent | 3f05eb7fcb71942c90fa7d5796c3d18ed62443cf (diff) | |
download | monitoring-plugins-016d33230eb4fffd7e1f5644ce4901cb4d01f4e3.tar.gz |
bump copyright year
initialize result to STATE_UNKNOW in place of STATE_OK
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@982 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_ssh.c')
-rw-r--r-- | plugins/check_ssh.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/plugins/check_ssh.c b/plugins/check_ssh.c index 82d0acad..a21d64a4 100644 --- a/plugins/check_ssh.c +++ b/plugins/check_ssh.c @@ -18,15 +18,15 @@ ******************************************************************************/ -#include "common.h" -#include "netutils.h" -#include "utils.h" - const char *progname = "check_ssh"; const char *revision = "$Revision$"; -const char *copyright = "2000-2003"; +const char *copyright = "2000-2004"; const char *email = "nagiosplug-devel@lists.sourceforge.net"; +#include "common.h" +#include "netutils.h" +#include "utils.h" + #ifndef MSG_DONTWAIT #define MSG_DONTWAIT 0 #endif @@ -51,7 +51,7 @@ int ssh_connect (char *haddr, int hport, char *remote_version); int main (int argc, char **argv) { - int result; + int result = STATE_UNKNOWN; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); @@ -62,6 +62,7 @@ main (int argc, char **argv) /* initialize alarm signal handling */ signal (SIGALRM, socket_timeout_alarm_handler); + alarm (socket_timeout); /* ssh_connect exits if error is found */ |