diff options
-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 316d472ed3a..a8b548c6ab5 100644 --- a/sbin/pfctl/parse.y +++ b/sbin/pfctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.455 2004/06/10 14:22:54 dhartmei Exp $ */ +/* $OpenBSD: parse.y,v 1.456 2004/06/25 05:45:48 deraadt Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -757,7 +757,7 @@ scrubrule : SCRUB dir logquick interface af proto fromto scrub_opts if ($8.randomid) r.rule_flag |= PFRULE_RANDOMID; if ($8.reassemble_tcp) { - if (r.direction != PF_INOUT) { + if (r.direction != PF_FORWARD) { yyerror("reassemble tcp rules can not " "specify direction"); YYERROR; |