From 3bc429127d05ea3c84e3c151d53ad3546bea5e9b Mon Sep 17 00:00:00 2001 Message-Id: <3bc429127d05ea3c84e3c151d53ad3546bea5e9b.1715168236.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 18 Oct 2005 08:43:44 +0000 Subject: [PATCH] Various manual fixes. Organization: Straylight/Edgeware From: mdw --- man/lbuf.3 | 6 +++--- man/pkbuf.3 | 6 +++--- man/unihash.3 | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/man/lbuf.3 b/man/lbuf.3 index 1c80f93..5ff582a 100644 --- a/man/lbuf.3 +++ b/man/lbuf.3 @@ -213,12 +213,12 @@ signalled to the higher-level object so that it can detach itself from its data source. .PP Rather than invent some complex interface for this, the line buffer -exports one of its structure members, -.BR flags . +exports one of its structure members, a flags word called +.BR f . A higher-level object wishing to disable the line buffer simply clears the bit .B LBUF_ENABLE -in the flags word. +in this flags word. .PP Disabling a buffer causes an immediate return from .BR lbuf_flush . diff --git a/man/pkbuf.3 b/man/pkbuf.3 index 4bcc9d3..3d7fdc5 100644 --- a/man/pkbuf.3 +++ b/man/pkbuf.3 @@ -197,12 +197,12 @@ also be signalled to the higher-level object so that it can detach itself from its data source. .PP Rather than invent some complex interface for this, the packet buffer -exports one of its structure members, -.BR flags . +exports one of its structure members, a flags words called +.BR f . A higher-level object wishing to disable the packet buffer simply clears the bit .B PKBUF_ENABLE -in the flags word. +in this flags word. .PP Disabling a buffer causes an immediate return from .BR pkbuf_flush . diff --git a/man/unihash.3 b/man/unihash.3 index 8e45c69..bc565b8 100644 --- a/man/unihash.3 +++ b/man/unihash.3 @@ -49,8 +49,8 @@ unihash \- simple and efficient universal hashing for hashtables .BI "void unihash_setkey(unihash_info *" i ", uint32 " k ); .BI "uint32 UNIHASH_INIT(const unihash_info *" i ); -.BI "void unihash_hash(const unihash_info *" st ", uint32 " a , -.BI " const void *" p ", size_t " sz ); +.BI "uint32 unihash_hash(const unihash_info *" i ", uint32 " a , +.BI " const void *" p ", size_t " sz ); .BI "uint32 unihash(const unihash_info *" i ", const void *" p ", size_t " sz ); .BI "uint32 UNIHASH(const unihash_info *" i ", const void *" p ", size_t " sz ); .fi -- [mdw]