diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-07-12 19:30:20 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-07-12 19:30:20 +0000 |
commit | 4edea20b86fb08209ffb38c77be2df1d3a373e82 (patch) | |
tree | cb53837ed7bd59ee53f83df6f50e01fa446ff399 /plugins/check_disk.c | |
parent | ee03f1415acc9f4f8901593d9045244fbb3bbbb0 (diff) | |
download | monitoring-plugins-4edea20b86fb08209ffb38c77be2df1d3a373e82.tar.gz |
Moving parameter_list into utils_disk.h. Given list of mount points, can
now work out best match or exact match.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1448 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_disk.c')
-rw-r--r-- | plugins/check_disk.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/plugins/check_disk.c b/plugins/check_disk.c index f0a679dd..8e9c1fce 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c @@ -74,21 +74,6 @@ static int show_local_fs = 0; SunOs4.1.3, for one. It is *not* necessary on Linux. */ /* static int require_sync = 0; */ -/* A filesystem type to display. */ -struct parameter_list -{ - char *name; - int found; - int found_len; - uintmax_t w_df; - uintmax_t c_df; - double w_dfp; - double c_dfp; - double w_idfp; - double c_idfp; - struct parameter_list *name_next; -}; - /* Linked list of filesystem types to display. If `fs_select_list' is NULL, list all types. This table is generated dynamically from command-line options, |