Code

check_disk working with mountlist.c
[nagiosplug.git] / plugins / check_mysql.c
index 5c7bcb0d918faef52bb887ffb2ad09937bb70b80..307481463371417e8f3cb36bf0294726008d7880 100644 (file)
@@ -32,7 +32,6 @@ unsigned int db_port = MYSQL_PORT;
 
 int process_arguments (int, char **);
 int validate_arguments (void);
-int check_disk (int usp, int free_disk);
 void print_help (void);
 void print_usage (void);
 
@@ -127,7 +126,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'},
@@ -140,18 +138,12 @@ process_arguments (int argc, char **argv)
                {"help", no_argument, 0, 'h'},
                {0, 0, 0, 0}
        };
-#endif
 
        if (argc < 1)
                return ERROR;
 
        while (1) {
-#ifdef HAVE_GETOPT_H
-               c =
-                       getopt_long (argc, argv, "hVP:p:u:d:H:", long_options, &option_index);
-#else
-               c = getopt (argc, argv, "hVP:p:u:d:H:");
-#endif
+               c = getopt_long (argc, argv, "hVP:p:u:d:H:", long_options, &option_index);
 
                if (c == -1 || c == EOF)
                        break;
@@ -190,25 +182,26 @@ process_arguments (int argc, char **argv)
 
        c = optind;
 
-       if (strlen(db_host) == 0 && argc > c)
-               if (is_host (argv[c])) {
-                       db_host = argv[c++];
-               }
-               else {
-                       usage ("Invalid host name");
-               }
-
-       if (strlen(db_user) == 0 && argc > c)
-               db_user = argv[c++];
-
-       if (strlen(db_pass) == 0 && argc > c)
-               db_pass = argv[c++];
-
-       if (strlen(db) == 0 && argc > c)
-               db = argv[c++];
+       while ( argc > c ) {
 
-       if (is_intnonneg (argv[c]))
-               db_port = atoi (argv[c++]);
+               if (strlen(db_host) == 0)
+                       if (is_host (argv[c])) {
+                               db_host = argv[c++];
+                       }
+                       else {
+                               usage ("Invalid host name");
+                       }
+               else if (strlen(db_user) == 0)
+                       db_user = argv[c++];
+               else if (strlen(db_pass) == 0)
+                       db_pass = argv[c++];
+               else if (strlen(db) == 0)
+                       db = argv[c++];
+               else if (is_intnonneg (argv[c]))
+                       db_port = atoi (argv[c++]);
+               else
+                       break;
+       }
 
        return validate_arguments ();
 }