diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-05-14 22:56:12 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2009-05-14 22:56:12 +0000 |
commit | 34b94739978bbcbf7aa42f38b9f338252a97a904 (patch) | |
tree | e34e4eb43a4b544237640e286a55f660d7e9f43b /sbin/pfctl | |
parent | 040c8b00ccdc4334b1398717c7889c67392b52fb (diff) |
actually change the require-order default to No; I missed a part with
my last commit. ok deraadt@
Diffstat (limited to 'sbin/pfctl')
-rw-r--r-- | sbin/pfctl/parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/parse.y b/sbin/pfctl/parse.y index 058865f0e43..973c32e0d1f 100644 --- a/sbin/pfctl/parse.y +++ b/sbin/pfctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.558 2009/04/26 12:30:20 sthen Exp $ */ +/* $OpenBSD: parse.y,v 1.559 2009/05/14 22:56:11 sthen Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -5651,7 +5651,7 @@ parse_config(char *filename, struct pfctl *xpf) returnicmp6default = (ICMP6_DST_UNREACH << 8) | ICMP6_DST_UNREACH_NOPORT; blockpolicy = PFRULE_DROP; - require_order = 1; + require_order = 0; if ((file = pushfile(filename, 0)) == NULL) { warn("cannot open the main config file!"); |