git: ee9f418c8041 - main - pfctl: correctly print skip steps in -vv mode

From: Kristof Provost <kp_at_FreeBSD.org>
Date: Thu, 10 Oct 2024 12:37:14 UTC
The branch main has been updated by kp:

URL: https://cgit.FreeBSD.org/src/commit/?id=ee9f418c804184feb7139a0b4dac396b4934a8e7

commit ee9f418c804184feb7139a0b4dac396b4934a8e7
Author:     Kristof Provost <kp@FreeBSD.org>
AuthorDate: 2024-09-26 14:12:49 +0000
Commit:     Kristof Provost <kp@FreeBSD.org>
CommitDate: 2024-10-10 12:10:39 +0000

    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
---
 sbin/pfctl/pfctl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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: ");