diff options
author | kn <kn@cvs.openbsd.org> | 2018-09-18 12:55:20 +0000 |
---|---|---|
committer | kn <kn@cvs.openbsd.org> | 2018-09-18 12:55:20 +0000 |
commit | c09bfa81e4c2b26d2b435f8ba4ccdb46abd2055e (patch) | |
tree | c6d9d67501c0495ca21800dce4c0b4f252142eb1 /sbin/pfctl/pfctl.8 | |
parent | ceb161aab56e6c9f725eb7b775406e45a2d65be5 (diff) |
fix table commands under anchors
With r1.358 I simplified anchor handling but also broke semantics with
regard to tables:
# pfctl -a aname -t tname -T show
pfctl: anchors apply to -f, -F and -s only
Unbreak this by checking for table commands as well.
OK bluhm
Diffstat (limited to 'sbin/pfctl/pfctl.8')
-rw-r--r-- | sbin/pfctl/pfctl.8 | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sbin/pfctl/pfctl.8 b/sbin/pfctl/pfctl.8 index 11dd379a445..98b4edf8aa8 100644 --- a/sbin/pfctl/pfctl.8 +++ b/sbin/pfctl/pfctl.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pfctl.8,v 1.171 2017/08/11 22:30:38 benno Exp $ +.\" $OpenBSD: pfctl.8,v 1.172 2018/09/18 12:55:19 kn Exp $ .\" .\" Copyright (c) 2001 Kjell Wooding. All rights reserved. .\" @@ -24,7 +24,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: August 11 2017 $ +.Dd $Mdocdate: September 18 2018 $ .Dt PFCTL 8 .Os .Sh NAME @@ -94,8 +94,9 @@ The options are as follows: Apply flags .Fl f , .Fl F , +.Fl s , and -.Fl s +.Fl T only to the rules in the specified .Ar anchor . In addition to the main ruleset, |