From: Guy Harris Date: Sun, 8 Sep 2024 23:50:05 +0000 (-0700) Subject: pflog: handle the PF_NOSCRUB action. X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/0a94c0b164801fc07cc3dfb532677db0ff060baf pflog: handle the PF_NOSCRUB action. Everybody has it; map it to "noscrub". --- diff --git a/print-pflog.c b/print-pflog.c index 67b30a2a..33d88e70 100644 --- a/print-pflog.c +++ b/print-pflog.c @@ -172,6 +172,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" },