aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_disk.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_disk.c')
-rw-r--r--plugins/check_disk.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/plugins/check_disk.c b/plugins/check_disk.c
index 1afc7620..5fac4eae 100644
--- a/plugins/check_disk.c
+++ b/plugins/check_disk.c
@@ -217,7 +217,6 @@ process_arguments (int argc, char **argv)
{
int c;
-#ifdef HAVE_GETOPT_H
int option_index = 0;
static struct option long_options[] = {
{"warning", required_argument, 0, 'w'},
@@ -235,7 +234,6 @@ process_arguments (int argc, char **argv)
{0, 0, 0, 0}
};
-#endif
if (argc < 2)
return ERROR;
@@ -245,12 +243,7 @@ process_arguments (int argc, char **argv)
strcpy (argv[c], "-t");
while (1) {
-#ifdef HAVE_GETOPT_H
- c =
- getopt_long (argc, argv, "+?Vqhvet:c:w:p:x:m", long_options, &option_index);
-#else
- c = getopt (argc, argv, "+?Vqhvet:c:w:p:x:m");
-#endif
+ c = getopt_long (argc, argv, "+?Vqhvet:c:w:p:x:m", long_options, &option_index);
if (c == -1 || c == EOF)
break;