Fixed bitrot in the prototypes for NDINIT and NDFREE.

This commit is contained in:
Bruce Evans 2001-03-29 10:29:37 +00:00
parent 6c00471f28
commit eac993bcaa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=74986

View File

@ -45,8 +45,9 @@
.Ft int
.Fn namei "struct nameidata *ndp"
.Ft void
.Fn NDINIT "struct nameidata *ndp" "int operation" "int operflags" "int segflag" "const char *path" "struct proc *proc"
.Fn NDFREE "struct nameidata *ndp" "int operflags"
.Fn NDINIT "struct nameidata *ndp" "u_long operation" "u_long operflags" "enum uio_seg segflag" "const char *path" "struct proc *proc"
.Ft void
.Fn NDFREE "struct nameidata *ndp" "u_int operflags"
.Sh DESCRIPTION
.Fn namei
is used to get from a pathname to a vnode for the object.