summaryrefslogtreecommitdiffstats
path: root/plugins/check_nt.c
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2003-03-11 22:22:12 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2003-03-11 22:22:12 (GMT)
commit7283211f00a3a89956d9dfc4a851dc1aaa7a1cf3 (patch)
tree371434969644a1d3cc3c5c2c26ee73cd8221aaa4 /plugins/check_nt.c
parentd7ba5ec38b51731d4ddc0a7f6e9f30897f70f156 (diff)
downloadmonitoring-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_nt.c')
-rw-r--r--plugins/check_nt.c6
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){
387int process_arguments(int argc, char **argv){ 387int 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;