diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2017-03-29 23:05:06 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2017-03-29 23:05:06 +0000 |
commit | 62bf0edad04bb818f5b5ee7c5a764917f35690cc (patch) | |
tree | 60b03c49b7519e39e08a0602435125ffa02fe377 /share/man | |
parent | 8b788dc4f9ff56abd87f0f4602330e1521df9995 (diff) |
m_devget() lost its ipf pointer argument, update man page.
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man9/mbuf.9 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index 13246317090..559efe71696 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mbuf.9,v 1.105 2016/10/17 02:53:47 lteo Exp $ +.\" $OpenBSD: mbuf.9,v 1.106 2017/03/29 23:05:05 claudio 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: October 17 2016 $ +.Dd $Mdocdate: March 29 2017 $ .Dt MGET 9 .Os .Sh NAME @@ -112,7 +112,7 @@ .Ft void .Fn m_cat "struct mbuf *m" "struct mbuf *n" .Ft struct mbuf * -.Fn m_devget "char *buf" "int totlen" "int off" "struct ifnet *ifp" +.Fn m_devget "char *buf" "int totlen" "int off" .Ft int .Fn m_apply "struct mbuf *m" "int off" "int len" \ "int (*func)(caddr_t, caddr_t, unsigned int)" "caddr_t fstate" @@ -660,7 +660,7 @@ Concatenate the mbuf chain pointed to by to the mbuf chain pointed to by .Fa m . The mbuf chains must be of the same type. -.It Fn m_devget "char *buf" "int totlen" "int off" "struct ifnet *ifp" +.It Fn m_devget "char *buf" "int totlen" "int off" Copy .Fa totlen bytes of data from device local memory pointed to by |