diff options
Diffstat (limited to 'plugins/check_ldap.c')
-rw-r--r-- | plugins/check_ldap.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/plugins/check_ldap.c b/plugins/check_ldap.c index ac11c58..90fe622 100644 --- a/plugins/check_ldap.c +++ b/plugins/check_ldap.c | |||
@@ -130,7 +130,6 @@ process_arguments (int argc, char **argv) | |||
130 | { | 130 | { |
131 | int c; | 131 | int c; |
132 | 132 | ||
133 | #ifdef HAVE_GETOPT_H | ||
134 | int option_index = 0; | 133 | int option_index = 0; |
135 | /* initialize the long option struct */ | 134 | /* initialize the long option struct */ |
136 | static struct option longopts[] = { | 135 | static struct option longopts[] = { |
@@ -147,7 +146,6 @@ process_arguments (int argc, char **argv) | |||
147 | {"crit", required_argument, 0, 'c'}, | 146 | {"crit", required_argument, 0, 'c'}, |
148 | {0, 0, 0, 0} | 147 | {0, 0, 0, 0} |
149 | }; | 148 | }; |
150 | #endif | ||
151 | 149 | ||
152 | if (argc < 2) | 150 | if (argc < 2) |
153 | return ERROR; | 151 | return ERROR; |
@@ -158,11 +156,7 @@ process_arguments (int argc, char **argv) | |||
158 | } | 156 | } |
159 | 157 | ||
160 | while (1) { | 158 | while (1) { |
161 | #ifdef HAVE_GETOPT_H | 159 | c = getopt_long (argc, argv, "hVt:c:w:H:b:p:a:D:P:", longopts, &option_index); |
162 | c = getopt_long (argc, argv, "hVt:c:w:H:b:p:a:D:P:", longopts, &option_index); | ||
163 | #else | ||
164 | c = getopt (argc, argv, "+?hVt:c:w:H:b:p:a:D:P:"); | ||
165 | #endif | ||
166 | 160 | ||
167 | if (c == -1 || c == EOF) | 161 | if (c == -1 || c == EOF) |
168 | break; | 162 | break; |