git: 6f0942bde7a0 - main - Revert "blocklistd-helper: Silence another bogus pf warning"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 28 Oct 2025 11:53:28 UTC
The branch main has been updated by jlduran:
URL: https://cgit.FreeBSD.org/src/commit/?id=6f0942bde7a08fe46e575486f0e9c97c055d5aad
commit 6f0942bde7a08fe46e575486f0e9c97c055d5aad
Author: Jose Luis Duran <jlduran@FreeBSD.org>
AuthorDate: 2025-10-28 11:41:31 +0000
Commit: Jose Luis Duran <jlduran@FreeBSD.org>
CommitDate: 2025-10-28 11:51:59 +0000
Revert "blocklistd-helper: Silence another bogus pf warning"
This reverts commit 67ade69eb6079887215db1fde86eba2fb8e2acf7.
A fix has been implemented in a943a96a50ba ("libpfctl: Fix displaying
deeply nested anchors").
Revert this commit to avoid having differences with upstream.
---
contrib/blocklist/libexec/blocklistd-helper | 2 +-
libexec/blocklistd-helper/blacklistd-helper | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/contrib/blocklist/libexec/blocklistd-helper b/contrib/blocklist/libexec/blocklistd-helper
index 1d4a38b1d831..14a192ee35ce 100755
--- a/contrib/blocklist/libexec/blocklistd-helper
+++ b/contrib/blocklist/libexec/blocklistd-helper
@@ -259,7 +259,7 @@ flush)
# dynamically determine which anchors exist
for anchor in $(/sbin/pfctl -a "$2" -s Anchors 2> /dev/null); do
/sbin/pfctl -a "$anchor" -t "port${anchor##*/}" -T flush 2> /dev/null
- /sbin/pfctl -a "$anchor" -F rules 2> /dev/null
+ /sbin/pfctl -a "$anchor" -F rules
done
echo OK
;;
diff --git a/libexec/blocklistd-helper/blacklistd-helper b/libexec/blocklistd-helper/blacklistd-helper
index 053c9ce9b2a2..92f768e86cdf 100644
--- a/libexec/blocklistd-helper/blacklistd-helper
+++ b/libexec/blocklistd-helper/blacklistd-helper
@@ -280,7 +280,7 @@ flush)
# dynamically determine which anchors exist
for anchor in $(/sbin/pfctl -a "$2" -s Anchors 2> /dev/null); do
/sbin/pfctl -a "$anchor" -t "port${anchor##*/}" -T flush 2> /dev/null
- /sbin/pfctl -a "$anchor" -F rules 2> /dev/null
+ /sbin/pfctl -a "$anchor" -F rules
done
echo OK
;;