summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorDavid Krause <david@cvs.openbsd.org>2003-02-27 04:16:29 +0000
committerDavid Krause <david@cvs.openbsd.org>2003-02-27 04:16:29 +0000
commite47dd96feb94877c99450785e1bf7ee2335d9d12 (patch)
treed4bdfd785d2969c4631c74af52c488d132150b39 /sbin
parent914600873b5d51dca663859f1e411e74c8fc0a5c (diff)
modify error message to match the same 7 sections in pf.conf(5)
ok deraadt@ henning@
Diffstat (limited to 'sbin')
-rw-r--r--sbin/pfctl/parse.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/pfctl/parse.y b/sbin/pfctl/parse.y
index 29eb4f86166..bbe9ed245f0 100644
--- a/sbin/pfctl/parse.y
+++ b/sbin/pfctl/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.332 2003/02/26 20:27:20 henning Exp $ */
+/* $OpenBSD: parse.y,v 1.333 2003/02/27 04:16:28 david Exp $ */
/*
* Copyright (c) 2001 Markus Friedl. All rights reserved.
@@ -3379,8 +3379,8 @@ int
check_rulestate(int desired_state)
{
if (require_order && (rulestate > desired_state)) {
- yyerror("Rules must be in order: options, scrub, "
- "queue, NAT, filter");
+ yyerror("Rules must be in order: options, normalization, "
+ "queueing, translation, filtering");
return (1);
}
rulestate = desired_state;