summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorDaniel Hartmeier <dhartmei@cvs.openbsd.org>2003-01-01 04:26:20 +0000
committerDaniel Hartmeier <dhartmei@cvs.openbsd.org>2003-01-01 04:26:20 +0000
commit626d51248cdbdeaa078bb57c95996cb2d563e0a2 (patch)
treecfb90b43e73eb8399cc0d222461e81467ed3a88a /sbin
parente300501e7576c62a5beade4ef35433795899472f (diff)
Remove skip step for action (scrub vs. non-scrub), as scrub rules are
stored in a separate list now. Regress tests still pass after sed "s/ a=end / /g", other skip steps are not affected.
Diffstat (limited to 'sbin')
-rw-r--r--sbin/pfctl/pfctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/pfctl.c b/sbin/pfctl/pfctl.c
index ce00dae0801..05172a98dcb 100644
--- a/sbin/pfctl/pfctl.c
+++ b/sbin/pfctl/pfctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfctl.c,v 1.115 2003/01/01 00:58:10 dhartmei Exp $ */
+/* $OpenBSD: pfctl.c,v 1.116 2003/01/01 04:26:19 dhartmei Exp $ */
/*
* Copyright (c) 2001 Daniel Hartmeier
@@ -461,7 +461,7 @@ void
pfctl_print_rule_counters(struct pf_rule *rule, int opts)
{
if (opts & PF_OPT_VERBOSE2) {
- const char *t[PF_SKIP_COUNT] = { "a", "i", "d", "f",
+ const char *t[PF_SKIP_COUNT] = { "i", "d", "f",
"p", "sa", "sp", "da", "dp" };
int i;