summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorMike Belopuhov <mikeb@cvs.openbsd.org>2011-11-08 19:17:08 +0000
committerMike Belopuhov <mikeb@cvs.openbsd.org>2011-11-08 19:17:08 +0000
commitf6d89a834c1e6236fb93895cee27d0cf85c6460f (patch)
treef3d6ffec7e6eec3ee2034a1d370a7ff4ce0b3342 /sbin
parent641605dc73c8f1d312d594881e81409b0a284b70 (diff)
Fixup skip step printout: rdomains come after direction; ok mcbride, henning
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 84ee9027c10..b7ff2054c5b 100644
--- a/sbin/pfctl/pfctl.c
+++ b/sbin/pfctl/pfctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfctl.c,v 1.304 2011/07/08 02:16:12 mcbride Exp $ */
+/* $OpenBSD: pfctl.c,v 1.305 2011/11/08 19:17:07 mikeb Exp $ */
/*
* Copyright (c) 2001 Daniel Hartmeier
@@ -705,7 +705,7 @@ void
pfctl_print_rule_counters(struct pf_rule *rule, int opts)
{
if (opts & PF_OPT_DEBUG) {
- const char *t[PF_SKIP_COUNT] = { "i", "r", "d", "f",
+ const char *t[PF_SKIP_COUNT] = { "i", "d", "r", "f",
"p", "sa", "da", "sp", "dp" };
int i;