summaryrefslogtreecommitdiffstats
path: root/plugins/check_snmp.c
diff options
context:
space:
mode:
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;