Code

cause snmpget try try for 1 second less than the timeout (allowing plugin to force...
[nagiosplug.git] / plugins / check_ups.c
index 4c9032268f8a940e4cefd758aefd1269dae4e78b..b077d31fe607bfbadb3171f8b16be4d58e3abfc5 100644 (file)
@@ -434,7 +434,6 @@ process_arguments (int argc, char **argv)
 {
        int c;
 
-#ifdef HAVE_GETOPT_H
        int option_index = 0;
        static struct option long_options[] = {
                {"hostname", required_argument, 0, 'H'},
@@ -448,7 +447,6 @@ process_arguments (int argc, char **argv)
                {"help", no_argument, 0, 'h'},
                {0, 0, 0, 0}
        };
-#endif
 
        if (argc < 2)
                return ERROR;
@@ -463,13 +461,8 @@ process_arguments (int argc, char **argv)
        }
 
        while (1) {
-#ifdef HAVE_GETOPT_H
-               c =
-                       getopt_long (argc, argv, "hVH:u:p:v:c:w:t:", long_options,
+               c = getopt_long (argc, argv, "hVH:u:p:v:c:w:t:", long_options,
                                                                         &option_index);
-#else
-               c = getopt (argc, argv, "hVH:u:p:v:c:w:t:");
-#endif
 
                if (c == -1 || c == EOF)
                        break;