Fixed bitrot in synopsis (some const poisoning had not reached here).
This commit is contained in:
parent
bbdffeab98
commit
38a7348ede
share/man/man9
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user