summaryrefslogtreecommitdiffstats
path: root/plugins/check_ssh.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_ssh.c')
-rw-r--r--plugins/check_ssh.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/plugins/check_ssh.c b/plugins/check_ssh.c
index 82d0aca..a21d64a 100644
--- a/plugins/check_ssh.c
+++ b/plugins/check_ssh.c
@@ -18,15 +18,15 @@
18 18
19******************************************************************************/ 19******************************************************************************/
20 20
21#include "common.h"
22#include "netutils.h"
23#include "utils.h"
24
25const char *progname = "check_ssh"; 21const char *progname = "check_ssh";
26const char *revision = "$Revision$"; 22const char *revision = "$Revision$";
27const char *copyright = "2000-2003"; 23const char *copyright = "2000-2004";
28const char *email = "nagiosplug-devel@lists.sourceforge.net"; 24const char *email = "nagiosplug-devel@lists.sourceforge.net";
29 25
26#include "common.h"
27#include "netutils.h"
28#include "utils.h"
29
30#ifndef MSG_DONTWAIT 30#ifndef MSG_DONTWAIT
31#define MSG_DONTWAIT 0 31#define MSG_DONTWAIT 0
32#endif 32#endif
@@ -51,7 +51,7 @@ int ssh_connect (char *haddr, int hport, char *remote_version);
51int 51int
52main (int argc, char **argv) 52main (int argc, char **argv)
53{ 53{
54 int result; 54 int result = STATE_UNKNOWN;
55 55
56 setlocale (LC_ALL, ""); 56 setlocale (LC_ALL, "");
57 bindtextdomain (PACKAGE, LOCALEDIR); 57 bindtextdomain (PACKAGE, LOCALEDIR);
@@ -62,6 +62,7 @@ main (int argc, char **argv)
62 62
63 /* initialize alarm signal handling */ 63 /* initialize alarm signal handling */
64 signal (SIGALRM, socket_timeout_alarm_handler); 64 signal (SIGALRM, socket_timeout_alarm_handler);
65
65 alarm (socket_timeout); 66 alarm (socket_timeout);
66 67
67 /* ssh_connect exits if error is found */ 68 /* ssh_connect exits if error is found */