diff options
Diffstat (limited to 'plugins/check_ssh.c')
-rw-r--r-- | plugins/check_ssh.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/plugins/check_ssh.c b/plugins/check_ssh.c index bd0a245..f3a351e 100644 --- a/plugins/check_ssh.c +++ b/plugins/check_ssh.c | |||
@@ -64,7 +64,6 @@ process_arguments (int argc, char **argv) | |||
64 | int c; | 64 | int c; |
65 | char *tmp = NULL; | 65 | char *tmp = NULL; |
66 | 66 | ||
67 | #ifdef HAVE_GETOPT_H | ||
68 | int option_index = 0; | 67 | int option_index = 0; |
69 | static struct option long_options[] = { | 68 | static struct option long_options[] = { |
70 | {"version", no_argument, 0, 'V'}, | 69 | {"version", no_argument, 0, 'V'}, |
@@ -74,7 +73,6 @@ process_arguments (int argc, char **argv) | |||
74 | {"host", required_argument, 0, 'H'}, | 73 | {"host", required_argument, 0, 'H'}, |
75 | {0, 0, 0, 0} | 74 | {0, 0, 0, 0} |
76 | }; | 75 | }; |
77 | #endif | ||
78 | 76 | ||
79 | if (argc < 2) | 77 | if (argc < 2) |
80 | return ERROR; | 78 | return ERROR; |
@@ -84,11 +82,8 @@ process_arguments (int argc, char **argv) | |||
84 | strcpy (argv[c], "-t"); | 82 | strcpy (argv[c], "-t"); |
85 | 83 | ||
86 | while (1) { | 84 | while (1) { |
87 | #ifdef HAVE_GETOPT_H | ||
88 | c = getopt_long (argc, argv, "+Vhvt:H:p:", long_options, &option_index); | 85 | c = getopt_long (argc, argv, "+Vhvt:H:p:", long_options, &option_index); |
89 | #else | 86 | |
90 | c = getopt (argc, argv, "+Vhvt:H:p:"); | ||
91 | #endif | ||
92 | if (c == -1 || c == EOF) | 87 | if (c == -1 || c == EOF) |
93 | break; | 88 | break; |
94 | 89 | ||