diff options
| -rw-r--r-- | share/man/man9/VOP_GETEXTATTR.9 | 2 | ||||
| -rw-r--r-- | share/man/man9/VOP_SETEXTATTR.9 | 2 | ||||
| -rw-r--r-- | share/man/man9/suser.9 | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man9/VOP_GETEXTATTR.9 b/share/man/man9/VOP_GETEXTATTR.9 index b3e4cc033a00..97d45ea859d8 100644 --- a/share/man/man9/VOP_GETEXTATTR.9 +++ b/share/man/man9/VOP_GETEXTATTR.9 @@ -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. diff --git a/share/man/man9/VOP_SETEXTATTR.9 b/share/man/man9/VOP_SETEXTATTR.9 index e61262ad1a3a..30fc2ca99700 100644 --- a/share/man/man9/VOP_SETEXTATTR.9 +++ b/share/man/man9/VOP_SETEXTATTR.9 @@ -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. diff --git a/share/man/man9/suser.9 b/share/man/man9/suser.9 index 759a3dfb55bc..5d17c3852b86 100644 --- a/share/man/man9/suser.9 +++ b/share/man/man9/suser.9 @@ -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 |
