diff options
author | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2011-07-08 02:16:13 +0000 |
---|---|---|
committer | Ryan Thomas McBride <mcbride@cvs.openbsd.org> | 2011-07-08 02:16:13 +0000 |
commit | f256836187085cf06c85dd7e04e7c0cd3b42ed7e (patch) | |
tree | 442a9ae9e8c937d2538555bb2454eeb915128b7d /sbin | |
parent | f0fb8b5bb61c60c6c12368ef9a304f442c06f30e (diff) |
Correctly print skip steps in -vv mode
- Did not include PF_SKIP_RDOM
- Changed order of address and ports.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/pfctl/pfctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c index 446363320c2..84ee9027c10 100644 --- a/sbin/pfctl/pfctl.c +++ b/sbin/pfctl/pfctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl.c,v 1.303 2010/10/01 12:33:14 reyk Exp $ */ +/* $OpenBSD: pfctl.c,v 1.304 2011/07/08 02:16:12 mcbride Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -705,8 +705,8 @@ void pfctl_print_rule_counters(struct pf_rule *rule, int opts) { if (opts & PF_OPT_DEBUG) { - const char *t[PF_SKIP_COUNT] = { "i", "d", "f", - "p", "sa", "sp", "da", "dp" }; + const char *t[PF_SKIP_COUNT] = { "i", "r", "d", "f", + "p", "sa", "da", "sp", "dp" }; int i; printf(" [ Skip steps: "); |