diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2008-12-14 23:39:06 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2008-12-14 23:39:06 +0000 |
commit | 9f5821c8cbd7dee5fbbb49f780b01054394ef117 (patch) | |
tree | 8f2bc272bf8aa5c0c61b1ffaccb521dda60d7036 /share | |
parent | 410665aa8b438881a12d3b03055e4297451c0c48 (diff) |
MCLGETI takes an mbuf *, not an mbuf.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/mbuf.9 | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index 45af95e2749..c4e0cb8949b 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mbuf.9,v 1.39 2008/11/29 15:44:37 deraadt Exp $ +.\" $OpenBSD: mbuf.9,v 1.40 2008/12/14 23:39:05 dlg Exp $ .\" .\" Copyright (c) 2001 Jean-Jacques Bernard-Gundol <jjbg@openbsd.org> .\" All rights reserved. @@ -25,7 +25,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: November 29 2008 $ +.Dd $Mdocdate: December 14 2008 $ .Dt MBUF 9 .Os .Sh NAME @@ -85,8 +85,7 @@ "int (*func)(caddr_t, caddr_t, unsigned int)" "caddr_t fstate" .Fn MEXTMALLOC "struct mbuf *m" "int size" "int how" .Fn MCLGET "struct mbuf *m" "int how" -.Ft struct mbuf * -.Fn MCLGETI "struct mbuf" "int how" "struct ifnet *ifp" "int len" +.Fn MCLGETI "struct mbuf *m" "int how" "struct ifnet *ifp" "int len" .Fn MEXTADD "struct mbuf *m" "caddr_t buf" "u_int size" "int type" \ "void (*free)(caddr_t, u_int, void *)" "void *arg" .Fn M_ALIGN "struct mbuf *m" "int len" |