summaryrefslogtreecommitdiff
path: root/sys/ufs/ext2fs/ext2fs_vfsops.c
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-09-18 01:46:41 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-09-18 01:46:41 +0000
commit7531bbfd9aa23c4fe2ae66af256603fcb5a9c810 (patch)
tree44443d889d4fb7746d6bc74f7322258c517d9fec /sys/ufs/ext2fs/ext2fs_vfsops.c
parenta693baeb67b6f7b80d68286d4c53e7143ab87c41 (diff)
move ext2fs_init to where it belongs.
Diffstat (limited to 'sys/ufs/ext2fs/ext2fs_vfsops.c')
-rw-r--r--sys/ufs/ext2fs/ext2fs_vfsops.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/ufs/ext2fs/ext2fs_vfsops.c b/sys/ufs/ext2fs/ext2fs_vfsops.c
index 28ad9d100f8..9d877d8add4 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.14 2001/03/04 06:32:41 csapuntz Exp $ */
+/* $OpenBSD: ext2fs_vfsops.c,v 1.15 2001/09/18 01:46:40 art Exp $ */
/* $NetBSD: ext2fs_vfsops.c,v 1.1 1997/06/11 09:34:07 bouyer Exp $ */
/*
@@ -104,6 +104,13 @@ struct pool ext2fs_inode_pool;
extern u_long ext2gennumber;
+int
+ext2fs_init(vfsp)
+ struct vfsconf *vfsp;
+{
+ return (ufs_init(vfsp));
+}
+
/*
* Called by main() when ext2fs is going to be mounted as root.
*