CVSROOT: /cvs Module name: src Changes by: k...@cvs.openbsd.org 2018/10/04 14:25:59
Modified files: sys/net : pf.c Log message: Honor quick on anchor rules When evaluating the anchor's ruleset, prevent clobbering it's very own `quick' test result by blindly setting it. This makes the following pf.conf work as intended (packets would be blocked since `quick' had no effect): anchor quick { pass } block Broken since after 6.1 release as reported by Fabian Mueller-Knapp, thanks! OK henning sashan