summaryrefslogtreecommitdiffstats
path: root/plugins/check_snmp.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_snmp.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_snmp.c')
-rw-r--r--plugins/check_snmp.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c
index 327ef81..b943379 100644
--- a/plugins/check_snmp.c
+++ b/plugins/check_snmp.c
@@ -422,7 +422,6 @@ process_arguments (int argc, char **argv)
422 int c = 1; 422 int c = 1;
423 int j = 0, jj = 0, ii = 0; 423 int j = 0, jj = 0, ii = 0;
424 424
425#ifdef HAVE_GETOPT_H
426 int option_index = 0; 425 int option_index = 0;
427 static struct option long_options[] = { 426 static struct option long_options[] = {
428 STD_LONG_OPTS, 427 STD_LONG_OPTS,
@@ -447,7 +446,6 @@ process_arguments (int argc, char **argv)
447 {"privpasswd", required_argument, 0, 'X'}, 446 {"privpasswd", required_argument, 0, 'X'},
448 {0, 0, 0, 0} 447 {0, 0, 0, 0}
449 }; 448 };
450#endif
451 449
452 if (argc < 2) 450 if (argc < 2)
453 return ERROR; 451 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, "hvVt:c:w:H:C:o:e:E:d:D:s:R:r:l:u:p:m:P:L:U:a:A:X:",
467 c =
468 getopt_long (argc, argv, "hvVt:c:w:H:C:o:e:E:d:D:s:R:r:l:u:p:m:P:L:U:a:A:X:",
469 long_options, &option_index); 465 long_options, &option_index);
470#else
471 c = getopt (argc, argv, "hvVt:c:w:H:C:o:e:E:d:D:s:R:r:l:u:p:m:P:L:U:a:A:X:");
472#endif
473 466
474 if (c == -1 || c == EOF) 467 if (c == -1 || c == EOF)
475 break; 468 break;