diff options
author | 2003-03-04 16:52:00 +0000 | |
---|---|---|
committer | 2003-03-04 16:52:00 +0000 | |
commit | 6476683993aa1d18ea988ae72f1dc2414f8c19cd (patch) | |
tree | d208955cb0baf5cd51826c6f57c4d0109c3cae79 | |
parent | update BNF for 'queue ( q_def, q_pri )' and similar in filteropts (diff) | |
download | wireguard-openbsd-6476683993aa1d18ea988ae72f1dc2414f8c19cd.tar.xz wireguard-openbsd-6476683993aa1d18ea988ae72f1dc2414f8c19cd.zip |
Fix limit BNF part, since we don't quote token literals, use limit-item,
and limit-list is already a list (due to the recursive definition) which
can also consist of just one entry, so no need for {}.
Found by Maik Kuendig
-rw-r--r-- | share/man/man5/pf.conf.5 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man5/pf.conf.5 b/share/man/man5/pf.conf.5 index 16666e5d5da..b9f730284b5 100644 --- a/share/man/man5/pf.conf.5 +++ b/share/man/man5/pf.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pf.conf.5,v 1.200 2003/03/04 16:50:01 pb Exp $ +.\" $OpenBSD: pf.conf.5,v 1.201 2003/03/04 16:52:00 dhartmei Exp $ .\" .\" Copyright (c) 2002, Daniel Hartmeier .\" All rights reserved. @@ -1901,7 +1901,7 @@ option = set ( [ timeout ( timeout | { timeout-list } ) ] | [ optimization [ default | normal | high-latency | satellite | aggressive | conservative ] ] - [ limit ( limit | { limit-list } ) ] | + [ limit limit-list ] | [ loginterface ( interface-name | none ) ] | [ block-policy ( drop | return ) ] | [ require-order ( yes | no ) ] ) @@ -2025,8 +2025,8 @@ timeout = ( tcp.first | tcp.opening | tcp.established seconds seconds = number -limit-list = limit [ [ , ] limit-list ] -limit = ( states | frags ) number +limit-list = limit-item [ [ , ] limit-list ] +limit-item = ( states | frags ) number pooltype = ( bitmask | random | source-hash [ ( hex-key | string-key ) ] |