diff options
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 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 | |||
25 | const char *progname = "check_ssh"; | 21 | const char *progname = "check_ssh"; |
26 | const char *revision = "$Revision$"; | 22 | const char *revision = "$Revision$"; |
27 | const char *copyright = "2000-2003"; | 23 | const char *copyright = "2000-2004"; |
28 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; | 24 | const 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); | |||
51 | int | 51 | int |
52 | main (int argc, char **argv) | 52 | main (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 */ |