diff options
author | 2002-07-15 14:04:28 +0000 | |
---|---|---|
committer | 2002-07-15 14:04:28 +0000 | |
commit | 3d6030653bda9d26af1770a9e92fcbdd26b51e59 (patch) | |
tree | 31c572e2336a612e8bee968f2b3eb7cd5071dec6 | |
parent | o don't use keep state on block rules (diff) | |
download | wireguard-openbsd-3d6030653bda9d26af1770a9e92fcbdd26b51e59.tar.xz wireguard-openbsd-3d6030653bda9d26af1770a9e92fcbdd26b51e59.zip |
fix pasto, additionally fix DIOCGETBINAT
both noticed by Dries Schellekens
-rw-r--r-- | share/man/man4/pf.4 | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/share/man/man4/pf.4 b/share/man/man4/pf.4 index 761beffe447..1104c183322 100644 --- a/share/man/man4/pf.4 +++ b/share/man/man4/pf.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pf.4,v 1.16 2002/07/15 12:57:27 pb Exp $ +.\" $OpenBSD: pf.4,v 1.17 2002/07/15 14:04:28 pb Exp $ .\" .\" Copyright (C) 2001, Kjell Wooding. All rights reserved. .\" @@ -127,7 +127,7 @@ struct pfioc_binat { .Ed .It Dv DIOCCOMMITBINATS Fa "u_int32_t" .It Dv DIOCGETBINATS Fa "struct pfioc_binat" -.It Dv DIOCGETBINAT Fa "struct pfioc_changebinat" +.It Dv DIOCGETBINAT Fa "struct pfioc_binat" .It Dv DIOCBEGINRDRS Fa "u_int32_t" .It Dv DIOCADDRDR Fa "struct pfioc_rdr" .Bd -literal @@ -277,10 +277,8 @@ Clear per-rule statistics. Sets hard limits on the memory pools used by the packet filter. .Bd -literal struct pfioc_limit { - int psk_af; - int psk_proto; - struct pf_rule_addr psk_src; - struct pf_rule_addr psk_dst; + int index; + unsigned limit; }; .Ed .It Dv DIOCGETLIMIT Fa "struct pfioc_limit" |