diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/.cvsignore | 4 | ||||
-rw-r--r-- | plugins/check_disk.c | 2 | ||||
-rw-r--r-- | plugins/common.h | 3 | ||||
-rw-r--r-- | plugins/tests/.cvsignore | 1 |
4 files changed, 6 insertions, 4 deletions
diff --git a/plugins/.cvsignore b/plugins/.cvsignore index 7ac1835..f75aab2 100644 --- a/plugins/.cvsignore +++ b/plugins/.cvsignore | |||
@@ -1,3 +1,4 @@ | |||
1 | check_apt | ||
1 | check_disk | 2 | check_disk |
2 | check_dns | 3 | check_dns |
3 | check_dummy | 4 | check_dummy |
@@ -5,11 +6,13 @@ check_ftp | |||
5 | check_fping | 6 | check_fping |
6 | check_http | 7 | check_http |
7 | check_imap | 8 | check_imap |
9 | check_jabber | ||
8 | check_load | 10 | check_load |
9 | check_mrtg | 11 | check_mrtg |
10 | check_mrtgtraf | 12 | check_mrtgtraf |
11 | check_nagios | 13 | check_nagios |
12 | check_nntp | 14 | check_nntp |
15 | check_ntp | ||
13 | check_nwstat | 16 | check_nwstat |
14 | check_overcr | 17 | check_overcr |
15 | check_ping | 18 | check_ping |
@@ -46,3 +49,4 @@ Makefile | |||
46 | Makefile.in | 49 | Makefile.in |
47 | config.h.in | 50 | config.h.in |
48 | .deps | 51 | .deps |
52 | .libs | ||
diff --git a/plugins/check_disk.c b/plugins/check_disk.c index ef236c0..898e6cb 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c | |||
@@ -171,7 +171,7 @@ main (int argc, char **argv) | |||
171 | bindtextdomain (PACKAGE, LOCALEDIR); | 171 | bindtextdomain (PACKAGE, LOCALEDIR); |
172 | textdomain (PACKAGE); | 172 | textdomain (PACKAGE); |
173 | 173 | ||
174 | mount_list = read_filesystem_list (0); | 174 | mount_list = read_file_system_list (0); |
175 | 175 | ||
176 | if (process_arguments (argc, argv) == ERROR) | 176 | if (process_arguments (argc, argv) == ERROR) |
177 | usage4 (_("Could not parse arguments")); | 177 | usage4 (_("Could not parse arguments")); |
diff --git a/plugins/common.h b/plugins/common.h index 57f4f93..baed12e 100644 --- a/plugins/common.h +++ b/plugins/common.h | |||
@@ -83,10 +83,7 @@ | |||
83 | #include <signal.h> | 83 | #include <signal.h> |
84 | #endif | 84 | #endif |
85 | 85 | ||
86 | /* TODO: define can be removed when all ifdef in each plugin has been removed */ | ||
87 | #define HAVE_GETOPT_H | ||
88 | #include <getopt.h> | 86 | #include <getopt.h> |
89 | |||
90 | #include <ctype.h> | 87 | #include <ctype.h> |
91 | 88 | ||
92 | #ifdef HAVE_LWRES_NETDB_H | 89 | #ifdef HAVE_LWRES_NETDB_H |
diff --git a/plugins/tests/.cvsignore b/plugins/tests/.cvsignore index 95112e1..94b5122 100644 --- a/plugins/tests/.cvsignore +++ b/plugins/tests/.cvsignore | |||
@@ -1,3 +1,4 @@ | |||
1 | Makefile | 1 | Makefile |
2 | Makefile.in | 2 | Makefile.in |
3 | test_utils | 3 | test_utils |
4 | .deps | ||