diff options
author | 2009-08-05 12:55:43 +0000 | |
---|---|---|
committer | 2009-08-05 12:55:43 +0000 | |
commit | 84017362760ba5b4ade73f7da015e9f9a0458e6a (patch) | |
tree | fd97ddca49efd2d84c5c4b7f4449923cac4d75c4 | |
parent | By popular demand and peer pressure, check-in work in progress work to support (diff) | |
download | wireguard-openbsd-84017362760ba5b4ade73f7da015e9f9a0458e6a.tar.xz wireguard-openbsd-84017362760ba5b4ade73f7da015e9f9a0458e6a.zip |
tables don't need pf if running in "l7" relay mode
-rw-r--r-- | usr.sbin/relayd/parse.y | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/relayd/parse.y b/usr.sbin/relayd/parse.y index 40c76274f64..4496ac1abd9 100644 --- a/usr.sbin/relayd/parse.y +++ b/usr.sbin/relayd/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.133 2009/04/24 14:20:24 reyk Exp $ */ +/* $OpenBSD: parse.y,v 1.134 2009/08/05 12:55:43 reyk Exp $ */ /* * Copyright (c) 2007, 2008 Reyk Floeter <reyk@openbsd.org> @@ -509,7 +509,6 @@ forwardmode : FORWARD { $$ = FWD_NORMAL; } ; table : '<' STRING '>' { - conf->sc_flags |= F_NEEDPF; if (strlen($2) >= TABLE_NAME_SIZE) { yyerror("invalid table name"); free($2); |