diff options
Diffstat (limited to 'plugins/check_nt.c')
-rw-r--r-- | plugins/check_nt.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/plugins/check_nt.c b/plugins/check_nt.c index 1c9dc0a..c7baa47 100644 --- a/plugins/check_nt.c +++ b/plugins/check_nt.c | |||
@@ -387,7 +387,6 @@ int main(int argc, char **argv){ | |||
387 | int process_arguments(int argc, char **argv){ | 387 | int process_arguments(int argc, char **argv){ |
388 | int c; | 388 | int c; |
389 | 389 | ||
390 | #ifdef HAVE_GETOPT_H | ||
391 | int option_index = 0; | 390 | int option_index = 0; |
392 | static struct option long_options[] = | 391 | static struct option long_options[] = |
393 | { | 392 | { |
@@ -401,7 +400,6 @@ int process_arguments(int argc, char **argv){ | |||
401 | {"help", no_argument, 0,'h'}, | 400 | {"help", no_argument, 0,'h'}, |
402 | {0,0,0,0} | 401 | {0,0,0,0} |
403 | }; | 402 | }; |
404 | #endif | ||
405 | 403 | ||
406 | /* no options were supplied */ | 404 | /* no options were supplied */ |
407 | if(argc<2) return ERROR; | 405 | if(argc<2) return ERROR; |
@@ -424,11 +422,7 @@ int process_arguments(int argc, char **argv){ | |||
424 | } | 422 | } |
425 | 423 | ||
426 | while (1){ | 424 | while (1){ |
427 | #ifdef HAVE_GETOPT_H | ||
428 | c = getopt_long(argc,argv,"+hVH:t:c:w:p:v:l:s:d:",long_options,&option_index); | 425 | c = getopt_long(argc,argv,"+hVH:t:c:w:p:v:l:s:d:",long_options,&option_index); |
429 | #else | ||
430 | c = getopt(argc,argv,"+hVH:t:c:w:p:v:l:s:d:"); | ||
431 | #endif | ||
432 | 426 | ||
433 | if (c==-1||c==EOF||c==1) | 427 | if (c==-1||c==EOF||c==1) |
434 | break; | 428 | break; |