From 11bf9282dab8912f0b83c5cdd8baee1607fc678c Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sun, 8 Sep 2024 16:50:05 -0700 Subject: [PATCH] pflog: handle the PF_NOSCRUB action. Everybody has it; map it to "noscrub". (cherry picked from commit 0a94c0b164801fc07cc3dfb532677db0ff060baf) --- print-pflog.c | 1 + 1 file changed, 1 insertion(+) diff --git a/print-pflog.c b/print-pflog.c index 52a103a8..952806e1 100644 --- a/print-pflog.c +++ b/print-pflog.c @@ -64,6 +64,7 @@ static const struct tok pf_actions[] = { { PF_PASS, "pass" }, { PF_DROP, "block" }, { PF_SCRUB, "scrub" }, + { PF_NOSCRUB, "noscrub" }, { PF_NAT, "nat" }, { PF_NONAT, "nonat" }, { PF_BINAT, "binat" }, -- 2.39.5