diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2003-03-11 22:22:12 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2003-03-11 22:22:12 +0000 |
commit | 7283211f00a3a89956d9dfc4a851dc1aaa7a1cf3 (patch) | |
tree | 371434969644a1d3cc3c5c2c26ee73cd8221aaa4 /plugins/check_hpjd.c | |
parent | d7ba5ec38b51731d4ddc0a7f6e9f30897f70f156 (diff) | |
download | monitoring-plugins-7283211f00a3a89956d9dfc4a851dc1aaa7a1cf3.tar.gz |
Remove getopt_long checks
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@396 f882894a-f735-0410-b71e-b25c423dba1c
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; |