diff options
Diffstat (limited to 'plugins/check_hpjd.c')
-rw-r--r-- | plugins/check_hpjd.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/plugins/check_hpjd.c b/plugins/check_hpjd.c index 267de2e0..d8583724 100644 --- a/plugins/check_hpjd.c +++ b/plugins/check_hpjd.c | |||
@@ -390,7 +390,6 @@ process_arguments (int argc, char **argv) | |||
390 | { | 390 | { |
391 | int c; | 391 | int c; |
392 | 392 | ||
393 | #ifdef HAVE_GETOPT_H | ||
394 | int option_index = 0; | 393 | int option_index = 0; |
395 | static struct option long_options[] = { | 394 | static struct option long_options[] = { |
396 | {"hostname", required_argument, 0, 'H'}, | 395 | {"hostname", required_argument, 0, 'H'}, |
@@ -402,18 +401,13 @@ process_arguments (int argc, char **argv) | |||
402 | {"help", no_argument, 0, 'h'}, | 401 | {"help", no_argument, 0, 'h'}, |
403 | {0, 0, 0, 0} | 402 | {0, 0, 0, 0} |
404 | }; | 403 | }; |
405 | #endif | ||
406 | 404 | ||
407 | if (argc < 2) | 405 | if (argc < 2) |
408 | return ERROR; | 406 | return ERROR; |
409 | 407 | ||
410 | 408 | ||
411 | while (1) { | 409 | while (1) { |
412 | #ifdef HAVE_GETOPT_H | ||
413 | c = getopt_long (argc, argv, "+hVH:C:", long_options, &option_index); | 410 | c = getopt_long (argc, argv, "+hVH:C:", long_options, &option_index); |
414 | #else | ||
415 | c = getopt (argc, argv, "+?hVH:C:"); | ||
416 | #endif | ||
417 | 411 | ||
418 | if (c == -1 || c == EOF || c == 1) | 412 | if (c == -1 || c == EOF || c == 1) |
419 | break; | 413 | break; |