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/fs | |
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/fs')
-rw-r--r-- | sys/fs/nullfs/null_vfsops.c | 2 | ||||
-rw-r--r-- | sys/fs/umapfs/umap_vfsops.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/fs/nullfs/null_vfsops.c b/sys/fs/nullfs/null_vfsops.c index cbeadc3..a865cce0 100644 --- a/sys/fs/nullfs/null_vfsops.c +++ b/sys/fs/nullfs/null_vfsops.c @@ -421,7 +421,7 @@ static int nullfs_extattrctl(mp, cmd, attrname, arg, p) struct mount *mp; int cmd; - char *attrname; + const char *attrname; caddr_t arg; struct proc *p; { diff --git a/sys/fs/umapfs/umap_vfsops.c b/sys/fs/umapfs/umap_vfsops.c index 6e0c0b6..207bb9c 100644 --- a/sys/fs/umapfs/umap_vfsops.c +++ b/sys/fs/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; { |