diff options
author | 2002-06-16 23:22:18 +0000 | |
---|---|---|
committer | 2002-06-16 23:22:18 +0000 | |
commit | b1e16f1d17ac6e533bfbe61240be623021d2b276 (patch) | |
tree | d06c2ef65467b1484960c2c8197377f1bdb9fd0c | |
parent | write newline before successful test completion (diff) | |
download | wireguard-openbsd-b1e16f1d17ac6e533bfbe61240be623021d2b276.tar.xz wireguard-openbsd-b1e16f1d17ac6e533bfbe61240be623021d2b276.zip |
Rules must in order -> Rules must be in order
-rw-r--r-- | sbin/pfctl/parse.y | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sbin/pfctl/parse.y b/sbin/pfctl/parse.y index 41112be7f14..6697c7ff989 100644 --- a/sbin/pfctl/parse.y +++ b/sbin/pfctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.100 2002/06/15 19:19:09 dhartmei Exp $ */ +/* $OpenBSD: parse.y,v 1.101 2002/06/16 23:22:18 aaron Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -259,7 +259,7 @@ scrubrule : SCRUB dir interface fromto nodf minttl maxmss fragcache struct pf_rule r; if (rulestate > PFCTL_STATE_SCRUB) { - yyerror("Rules must in order: " + yyerror("Rules must be in order: " "scrub, nat, filter"); YYERROR; } @@ -293,7 +293,7 @@ pfrule : action dir log quick interface route af proto fromto struct node_state_opt *o; if (rulestate > PFCTL_STATE_FILTER) { - yyerror("Rules must in order: " + yyerror("Rules must be in order: " "scrub, nat, filter"); YYERROR; } @@ -1207,7 +1207,7 @@ natrule : no NAT interface af proto fromto redirection struct pf_nat nat; if (rulestate > PFCTL_STATE_NAT) { - yyerror("Rules must in order: " + yyerror("Rules must be in order: " "scrub, nat, filter"); YYERROR; } @@ -1275,7 +1275,7 @@ binatrule : no BINAT interface af proto FROM address TO ipspec redirection struct pf_binat binat; if (rulestate > PFCTL_STATE_NAT) { - yyerror("Rules must in order: " + yyerror("Rules must be in order: " "scrub, nat, filter"); YYERROR; } @@ -1385,7 +1385,7 @@ rdrrule : no RDR interface af proto FROM ipspec TO ipspec dport redirection struct pf_rdr rdr; if (rulestate > PFCTL_STATE_NAT) { - yyerror("Rules must in order: " + yyerror("Rules must be in order: " "scrub, nat, filter"); YYERROR; } |