summaryrefslogtreecommitdiff
path: root/sbin/pfctl
diff options
context:
space:
mode:
authorStuart Henderson <sthen@cvs.openbsd.org>2009-04-26 12:30:21 +0000
committerStuart Henderson <sthen@cvs.openbsd.org>2009-04-26 12:30:21 +0000
commit1d715d3eee99aa13cca412d68dddd27b5038ad17 (patch)
treecd2995e60218172bea5b9aa0e70917da16255d44 /sbin/pfctl
parent4e57369c18f4a9814c9dd38070d316e3453dfedc (diff)
switch the require-order default to "no". regression tests still pass.
ok henning@ deraadt@
Diffstat (limited to 'sbin/pfctl')
-rw-r--r--sbin/pfctl/parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/parse.y b/sbin/pfctl/parse.y
index ec0591bb704..058865f0e43 100644
--- a/sbin/pfctl/parse.y
+++ b/sbin/pfctl/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.557 2009/04/25 19:29:54 henning Exp $ */
+/* $OpenBSD: parse.y,v 1.558 2009/04/26 12:30:20 sthen Exp $ */
/*
* Copyright (c) 2001 Markus Friedl. All rights reserved.
@@ -69,7 +69,7 @@ static u_int16_t returnicmpdefault =
static u_int16_t returnicmp6default =
(ICMP6_DST_UNREACH << 8) | ICMP6_DST_UNREACH_NOPORT;
static int blockpolicy = PFRULE_DROP;
-static int require_order = 1;
+static int require_order = 0;
static int default_statelock;
TAILQ_HEAD(files, file) files = TAILQ_HEAD_INITIALIZER(files);