diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1998-02-08 22:41:53 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1998-02-08 22:41:53 +0000 |
commit | 7be79d1dabf4aa2c866b352e2a4ab286a403e5d6 (patch) | |
tree | d445472670515452a4a239cef652c9f1b617f841 /sys/miscfs/fdesc | |
parent | 5f824803e29da9efcd793a89ec59fe8a8297a269 (diff) |
Updates to match type changes in syscall tables
Diffstat (limited to 'sys/miscfs/fdesc')
-rw-r--r-- | sys/miscfs/fdesc/fdesc_vfsops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/miscfs/fdesc/fdesc_vfsops.c b/sys/miscfs/fdesc/fdesc_vfsops.c index 34801f8edb6..358ad6892ee 100644 --- a/sys/miscfs/fdesc/fdesc_vfsops.c +++ b/sys/miscfs/fdesc/fdesc_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fdesc_vfsops.c,v 1.5 1997/11/06 05:58:32 csapuntz Exp $ */ +/* $OpenBSD: fdesc_vfsops.c,v 1.6 1998/02/08 22:41:37 tholo Exp $ */ /* $NetBSD: fdesc_vfsops.c,v 1.21 1996/02/09 22:40:07 christos Exp $ */ /* @@ -58,7 +58,7 @@ #include <sys/malloc.h> #include <miscfs/fdesc/fdesc.h> -int fdesc_mount __P((struct mount *, char *, caddr_t, +int fdesc_mount __P((struct mount *, const char *, caddr_t, struct nameidata *, struct proc *)); int fdesc_start __P((struct mount *, int, struct proc *)); int fdesc_unmount __P((struct mount *, int, struct proc *)); @@ -78,7 +78,7 @@ int fdesc_vptofh __P((struct vnode *, struct fid *)); int fdesc_mount(mp, path, data, ndp, p) struct mount *mp; - char *path; + const char *path; caddr_t data; struct nameidata *ndp; struct proc *p; |