diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2007-11-28 19:31:32 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2007-11-28 19:31:32 +0000 |
commit | 43a7aa4f54da64354b64c83d5a47148d239fc746 (patch) | |
tree | 662d281d1c0206d3c3dd116721860218a11251af /sys/kern | |
parent | a6f3a14f1ab9221b73fae61077d5a90c0adcd819 (diff) |
g/c mfs_mountroot() and mfs_initminiroot(). We don't support root on
mfs. OK deraadt@
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/vfs_conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c index 2c011d3ee9a..3419dfb4713 100644 --- a/sys/kern/vfs_conf.c +++ b/sys/kern/vfs_conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_conf.c,v 1.33 2007/06/01 05:37:14 deraadt Exp $ */ +/* $OpenBSD: vfs_conf.c,v 1.34 2007/11/28 19:31:31 millert Exp $ */ /* $NetBSD: vfs_conf.c,v 1.21.4.1 1995/11/01 00:06:26 jtc Exp $ */ /* @@ -131,7 +131,7 @@ static struct vfsconf vfsconflist[] = { /* Memory-based Filesystem */ #ifdef MFS - { &mfs_vfsops, MOUNT_MFS, 3, 0, MNT_LOCAL, mfs_mountroot, NULL }, + { &mfs_vfsops, MOUNT_MFS, 3, 0, MNT_LOCAL, NULL, NULL }, #endif #ifdef EXT2FS |