diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_mrtg.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/plugins/check_mrtg.c b/plugins/check_mrtg.c index 0658f51..e82a0f9 100644 --- a/plugins/check_mrtg.c +++ b/plugins/check_mrtg.c | |||
@@ -36,19 +36,19 @@ const char *email = "devel@monitoring-plugins.org"; | |||
36 | #include "common.h" | 36 | #include "common.h" |
37 | #include "utils.h" | 37 | #include "utils.h" |
38 | 38 | ||
39 | int process_arguments(int, char **); | 39 | static int process_arguments(int, char **); |
40 | int validate_arguments(void); | 40 | static int validate_arguments(void); |
41 | void print_help(void); | 41 | static void print_help(void); |
42 | void print_usage(void); | 42 | void print_usage(void); |
43 | 43 | ||
44 | char *log_file = NULL; | 44 | static char *log_file = NULL; |
45 | int expire_minutes = 0; | 45 | static int expire_minutes = 0; |
46 | bool use_average = true; | 46 | static bool use_average = true; |
47 | int variable_number = -1; | 47 | static int variable_number = -1; |
48 | unsigned long value_warning_threshold = 0L; | 48 | static unsigned long value_warning_threshold = 0L; |
49 | unsigned long value_critical_threshold = 0L; | 49 | static unsigned long value_critical_threshold = 0L; |
50 | char *label; | 50 | static char *label; |
51 | char *units; | 51 | static char *units; |
52 | 52 | ||
53 | int main(int argc, char **argv) { | 53 | int main(int argc, char **argv) { |
54 | int result = STATE_OK; | 54 | int result = STATE_OK; |