diff options
author | 2003-02-27 04:16:28 +0000 | |
---|---|---|
committer | 2003-02-27 04:16:28 +0000 | |
commit | eb8e832ad9077cfb0a70d566141844e85dfb4d58 (patch) | |
tree | 5e6c43e58aca4b5d79052c3159864f39d17ace3f | |
parent | more pointing out that *f are single precision versions of the double functions. (diff) | |
download | wireguard-openbsd-eb8e832ad9077cfb0a70d566141844e85dfb4d58.tar.xz wireguard-openbsd-eb8e832ad9077cfb0a70d566141844e85dfb4d58.zip |
modify error message to match the same 7 sections in pf.conf(5)
ok deraadt@ henning@
-rw-r--r-- | sbin/pfctl/parse.y | 6 |
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; |