From: Guy Harris Date: Sun, 30 Jan 2022 20:34:43 +0000 (-0800) Subject: Fix names for action values. X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/e28bcebd93ecce6c996bb2aca1b6f25b84c53fba Fix names for action values. --- diff --git a/print-pflog.c b/print-pflog.c index 05b9eb3a..c6ed1c19 100644 --- a/print-pflog.c +++ b/print-pflog.c @@ -67,11 +67,11 @@ static const struct tok pf_actions[] = { { PF_DROP, "block" }, { PF_SCRUB, "scrub" }, { PF_NAT, "nat" }, - { PF_NONAT, "nat" }, + { PF_NONAT, "nonat" }, { PF_BINAT, "binat" }, - { PF_NOBINAT, "binat" }, + { PF_NOBINAT, "nobinat" }, { PF_RDR, "rdr" }, - { PF_NORDR, "rdr" }, + { PF_NORDR, "nordr" }, { PF_SYNPROXY_DROP, "synproxy-drop" }, #if defined(__FreeBSD__) { PF_DEFER, "defer" },