From f2698cdae92237d5b631877b5dba4f46cd5cdfcd Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Fri, 27 Oct 2023 07:22:58 +0200 Subject: net-analyzer/monitoring-plugins: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/33534 Signed-off-by: Michael Mair-Keimberger Signed-off-by: Michael Orlitzky --- .../monitoring-plugins-fix-check-disk-on-btrfs.patch | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 net-analyzer/monitoring-plugins/files/monitoring-plugins-fix-check-disk-on-btrfs.patch diff --git a/net-analyzer/monitoring-plugins/files/monitoring-plugins-fix-check-disk-on-btrfs.patch b/net-analyzer/monitoring-plugins/files/monitoring-plugins-fix-check-disk-on-btrfs.patch deleted file mode 100644 index cbd458372133..000000000000 --- a/net-analyzer/monitoring-plugins/files/monitoring-plugins-fix-check-disk-on-btrfs.patch +++ /dev/null @@ -1,20 +0,0 @@ -https://bugs.gentoo.org/830249 -https://github.com/monitoring-plugins/monitoring-plugins/issues/1357 -https://github.com/monitoring-plugins/monitoring-plugins/commit/e17c1e9ed95b8b9681dccd5a909ac5a02a04416c - -diff --git a/plugins/check_disk.c b/plugins/check_disk.c -index 844e625f..a2735195 100644 ---- a/plugins/check_disk.c -+++ b/plugins/check_disk.c -@@ -1068,10 +1068,7 @@ get_stats (struct parameter_list *p, struct fs_usage *fsp) { - - void - get_path_stats (struct parameter_list *p, struct fs_usage *fsp) { -- /* 2007-12-08 - Workaround for Gnulib reporting insanely high available -- * space on BSD (the actual value should be negative but fsp->fsu_bavail -- * is unsigned) */ -- p->available = fsp->fsu_bavail > fsp->fsu_bfree ? 0 : fsp->fsu_bavail; -+ p->available = fsp->fsu_bavail; - p->available_to_root = fsp->fsu_bfree; - p->used = fsp->fsu_blocks - fsp->fsu_bfree; - if (freespace_ignore_reserved) { -- cgit v1.2.3-65-gdbad