diff options
author | Kristof Provost <kp@FreeBSD.org> | 2024-09-26 14:12:49 +0000 |
---|---|---|
committer | Kristof Provost <kp@FreeBSD.org> | 2024-10-10 12:10:39 +0000 |
commit | ee9f418c804184feb7139a0b4dac396b4934a8e7 (patch) | |
tree | 9432e1b8ae5bad28467adaf03df6267903dff331 | |
parent | 8de7f8ed5eefe85b4df068c54059656e12539c4b (diff) |
pfctl: correctly print skip steps in -vv mode
- Changed order of address and ports.
Obtained from: OpenBSD, mcbride <mcbride@openbsd.org>, 0bcfb1e086
Sponsored by: Rubicon Communications, LLC ("Netgate")
Differential Revision: https://reviews.freebsd.org/D46926
-rw-r--r-- | sbin/pfctl/pfctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c index 45bfdf31f8dc..16c54981b348 100644 --- a/sbin/pfctl/pfctl.c +++ b/sbin/pfctl/pfctl.c @@ -1038,7 +1038,7 @@ pfctl_print_rule_counters(struct pfctl_rule *rule, int opts) { if (opts & PF_OPT_DEBUG) { const char *t[PF_SKIP_COUNT] = { "i", "d", "f", - "p", "sa", "sp", "da", "dp" }; + "p", "sa", "da", "sp", "dp" }; int i; printf(" [ Skip steps: "); |