diff options
Diffstat (limited to 'plugins/t')
0 files changed, 0 insertions, 0 deletions
diff --git a/plugins/check_disk.c b/plugins/check_disk.c index 874a0ee..b338684 100644 --- a/plugins/check_disk.c +++ b/plugins/check_disk.c | |||
@@ -1038,10 +1038,7 @@ get_stats (struct parameter_list *p, struct fs_usage *fsp) { | |||
1038 | 1038 | ||
1039 | void | 1039 | void |
1040 | get_path_stats (struct parameter_list *p, struct fs_usage *fsp) { | 1040 | get_path_stats (struct parameter_list *p, struct fs_usage *fsp) { |
1041 | /* 2007-12-08 - Workaround for Gnulib reporting insanely high available | 1041 | p->available = fsp->fsu_bavail; |
1042 | * space on BSD (the actual value should be negative but fsp->fsu_bavail | ||
1043 | * is unsigned) */ | ||
1044 | p->available = fsp->fsu_bavail > fsp->fsu_bfree ? 0 : fsp->fsu_bavail; | ||
1045 | p->available_to_root = fsp->fsu_bfree; | 1042 | p->available_to_root = fsp->fsu_bfree; |
1046 | p->used = fsp->fsu_blocks - fsp->fsu_bfree; | 1043 | p->used = fsp->fsu_blocks - fsp->fsu_bfree; |
1047 | if (freespace_ignore_reserved) { | 1044 | if (freespace_ignore_reserved) { |