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/ufs/ext2fs | |
parent | 5f824803e29da9efcd793a89ec59fe8a8297a269 (diff) |
Updates to match type changes in syscall tables
Diffstat (limited to 'sys/ufs/ext2fs')
-rw-r--r-- | sys/ufs/ext2fs/ext2fs_extern.h | 6 | ||||
-rw-r--r-- | sys/ufs/ext2fs/ext2fs_vfsops.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/ufs/ext2fs/ext2fs_extern.h b/sys/ufs/ext2fs/ext2fs_extern.h index c9bda4fd007..2d56d80ceb0 100644 --- a/sys/ufs/ext2fs/ext2fs_extern.h +++ b/sys/ufs/ext2fs/ext2fs_extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ext2fs_extern.h,v 1.4 1997/11/06 05:59:14 csapuntz Exp $ */ +/* $OpenBSD: ext2fs_extern.h,v 1.5 1998/02/08 22:41:48 tholo Exp $ */ /* $NetBSD: ext2fs_extern.h,v 1.1 1997/06/11 09:33:55 bouyer Exp $ */ /*- @@ -101,8 +101,8 @@ void ext2fs_checkoverlap __P((struct buf *, struct inode *)); /* ext2fs_vfsops.c */ int ext2fs_mountroot __P((void)); -int ext2fs_mount __P((struct mount *, char *, caddr_t, struct nameidata *, - struct proc *)); +int ext2fs_mount __P((struct mount *, const char *, caddr_t, + struct nameidata *, struct proc *)); int ext2fs_reload __P((struct mount *, struct ucred *, struct proc *)); int ext2fs_mountfs __P((struct vnode *, struct mount *, struct proc *)); int ext2fs_unmount __P((struct mount *, int, struct proc *)); diff --git a/sys/ufs/ext2fs/ext2fs_vfsops.c b/sys/ufs/ext2fs/ext2fs_vfsops.c index 2a6efb270c1..da9a7612165 100644 --- a/sys/ufs/ext2fs/ext2fs_vfsops.c +++ b/sys/ufs/ext2fs/ext2fs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ext2fs_vfsops.c,v 1.8 1998/01/09 20:41:54 csapuntz Exp $ */ +/* $OpenBSD: ext2fs_vfsops.c,v 1.9 1998/02/08 22:41:48 tholo Exp $ */ /* $NetBSD: ext2fs_vfsops.c,v 1.1 1997/06/11 09:34:07 bouyer Exp $ */ /* @@ -185,7 +185,7 @@ ext2fs_mountroot() int ext2fs_mount(mp, path, data, ndp, p) register struct mount *mp; - char *path; + const char *path; caddr_t data; struct nameidata *ndp; struct proc *p; |