diff options
author | rwatson <rwatson@FreeBSD.org> | 2000-01-19 06:07:34 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2000-01-19 06:07:34 +0000 |
commit | f2d8638a5cd5ac52f1895ef7a64fa71cf2786e57 (patch) | |
tree | ddda74ecff673d6081fef6c7da415d7648850327 /sys/miscfs/umapfs | |
parent | 3a39a81644a761a64e6735bf717968c79870394b (diff) | |
download | FreeBSD-src-f2d8638a5cd5ac52f1895ef7a64fa71cf2786e57.zip FreeBSD-src-f2d8638a5cd5ac52f1895ef7a64fa71cf2786e57.tar.gz |
Fix bde'isms in acl/extattr syscall interface, renaming syscalls to
prettier (?) names, adding some const's around here, et al.
Reviewed by: bde
Diffstat (limited to 'sys/miscfs/umapfs')
-rw-r--r-- | sys/miscfs/umapfs/umap_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/miscfs/umapfs/umap_vfsops.c b/sys/miscfs/umapfs/umap_vfsops.c index 6e0c0b6..207bb9c 100644 --- a/sys/miscfs/umapfs/umap_vfsops.c +++ b/sys/miscfs/umapfs/umap_vfsops.c @@ -76,7 +76,7 @@ static int umapfs_vget __P((struct mount *mp, ino_t ino, struct vnode **vpp)); static int umapfs_vptofh __P((struct vnode *vp, struct fid *fhp)); static int umapfs_extattrctl __P((struct mount *mp, int cmd, - char *attrname, caddr_t arg, + const char *attrname, caddr_t arg, struct proc *p)); /* @@ -437,7 +437,7 @@ static int umapfs_extattrctl(mp, cmd, attrname, arg, p) struct mount *mp; int cmd; - char *attrname; + const char *attrname; caddr_t arg; struct proc *p; { |