diff options
Diffstat (limited to 'plugins/check_disk.c')
-rw-r--r-- | plugins/check_disk.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/plugins/check_disk.c b/plugins/check_disk.c index 1afc762..5fac4ea 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c | |||
@@ -217,7 +217,6 @@ process_arguments (int argc, char **argv) | |||
217 | { | 217 | { |
218 | int c; | 218 | int c; |
219 | 219 | ||
220 | #ifdef HAVE_GETOPT_H | ||
221 | int option_index = 0; | 220 | int option_index = 0; |
222 | static struct option long_options[] = { | 221 | static struct option long_options[] = { |
223 | {"warning", required_argument, 0, 'w'}, | 222 | {"warning", required_argument, 0, 'w'}, |
@@ -235,7 +234,6 @@ process_arguments (int argc, char **argv) | |||
235 | 234 | ||
236 | {0, 0, 0, 0} | 235 | {0, 0, 0, 0} |
237 | }; | 236 | }; |
238 | #endif | ||
239 | 237 | ||
240 | if (argc < 2) | 238 | if (argc < 2) |
241 | return ERROR; | 239 | return ERROR; |
@@ -245,12 +243,7 @@ process_arguments (int argc, char **argv) | |||
245 | strcpy (argv[c], "-t"); | 243 | strcpy (argv[c], "-t"); |
246 | 244 | ||
247 | while (1) { | 245 | while (1) { |
248 | #ifdef HAVE_GETOPT_H | 246 | c = getopt_long (argc, argv, "+?Vqhvet:c:w:p:x:m", long_options, &option_index); |
249 | c = | ||
250 | getopt_long (argc, argv, "+?Vqhvet:c:w:p:x:m", long_options, &option_index); | ||
251 | #else | ||
252 | c = getopt (argc, argv, "+?Vqhvet:c:w:p:x:m"); | ||
253 | #endif | ||
254 | 247 | ||
255 | if (c == -1 || c == EOF) | 248 | if (c == -1 || c == EOF) |
256 | break; | 249 | break; |