summaryrefslogtreecommitdiffstats
path: root/plugins/check_ups.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_ups.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_ups.c')
-rw-r--r--plugins/check_ups.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/plugins/check_ups.c b/plugins/check_ups.c
index 4c90322..b077d31 100644
--- a/plugins/check_ups.c
+++ b/plugins/check_ups.c
@@ -434,7 +434,6 @@ process_arguments (int argc, char **argv)
434{ 434{
435 int c; 435 int c;
436 436
437#ifdef HAVE_GETOPT_H
438 int option_index = 0; 437 int option_index = 0;
439 static struct option long_options[] = { 438 static struct option long_options[] = {
440 {"hostname", required_argument, 0, 'H'}, 439 {"hostname", required_argument, 0, 'H'},
@@ -448,7 +447,6 @@ process_arguments (int argc, char **argv)
448 {"help", no_argument, 0, 'h'}, 447 {"help", no_argument, 0, 'h'},
449 {0, 0, 0, 0} 448 {0, 0, 0, 0}
450 }; 449 };
451#endif
452 450
453 if (argc < 2) 451 if (argc < 2)
454 return ERROR; 452 return ERROR;
@@ -463,13 +461,8 @@ process_arguments (int argc, char **argv)
463 } 461 }
464 462
465 while (1) { 463 while (1) {
466#ifdef HAVE_GETOPT_H 464 c = getopt_long (argc, argv, "hVH:u:p:v:c:w:t:", long_options,
467 c =
468 getopt_long (argc, argv, "hVH:u:p:v:c:w:t:", long_options,
469 &option_index); 465 &option_index);
470#else
471 c = getopt (argc, argv, "hVH:u:p:v:c:w:t:");
472#endif
473 466
474 if (c == -1 || c == EOF) 467 if (c == -1 || c == EOF)
475 break; 468 break;