Fixed bitrot in synopsis (some const poisoning had not reached here).

This commit is contained in:
bde 2001-02-15 12:27:11 +00:00
parent bbdffeab98
commit 38a7348ede
3 changed files with 4 additions and 4 deletions

@ -36,7 +36,7 @@
.Fd #include <sys/vnode.h>
.Fd #include <sys/extattr.h>
.Ft int
.Fn VOP_GETEXTATTR "struct vnode *vp" "char *name" "struct uio *uio" "struct ucred *cred" "struct proc *p"
.Fn VOP_GETEXTATTR "struct vnode *vp" "const char *name" "struct uio *uio" "struct ucred *cred" "struct proc *p"
.Sh DESCRIPTION
This vnode call may be used to retrieve a specific named extended attribute
from a file or directory.

@ -36,7 +36,7 @@
.Fd #include <sys/vnode.h>
.Fd #include <sys/extattr.h>
.Ft int
.Fn VOP_SETEXTATTR "struct vnode *vp" "char *name" "struct uio *uio" "struct ucred *cred" "struct proc *p"
.Fn VOP_SETEXTATTR "struct vnode *vp" "const char *name" "struct uio *uio" "struct ucred *cred" "struct proc *p"
.Sh DESCRIPTION
This vnode call may be used to set specific named extended attribute for a
file or directory.

@ -44,9 +44,9 @@
.Fd #include <sys/param.h>
.Fd #include <sys/systm.h>
.Ft int
.Fn suser "struct proc *proc"
.Fn suser "const struct proc *proc"
.Ft int
.Fn suser_xxx "struct ucred *cred" "struct proc *proc" "int flags"
.Fn suser_xxx "const struct ucred *cred" "const struct proc *proc" "int flags"
.Sh DESCRIPTION
The
.Nm