diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-06-27 08:17:52 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-06-27 08:17:52 +0000 |
commit | c3c599a884c8bf45bf75ae5a5d2c3236dfdd59c6 (patch) | |
tree | 10577600ed432f5f4008f7851039a86af1043260 /sys/gnu/ext2fs | |
parent | bd7a4658fbe5342b548c6d9b4942dba12d206829 (diff) |
Make ext2fs_vfsops non-static
Diffstat (limited to 'sys/gnu/ext2fs')
-rw-r--r-- | sys/gnu/ext2fs/ext2_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/gnu/ext2fs/ext2_vfsops.c b/sys/gnu/ext2fs/ext2_vfsops.c index 6223c32b3bb..0f1fc6bf7f9 100644 --- a/sys/gnu/ext2fs/ext2_vfsops.c +++ b/sys/gnu/ext2fs/ext2_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ext2_vfsops.c,v 1.3 1996/06/27 06:48:41 downsj Exp $ */ +/* $OpenBSD: ext2_vfsops.c,v 1.4 1996/06/27 08:17:51 downsj Exp $ */ /* * modified for EXT2FS support in Lites 1.1 @@ -86,7 +86,7 @@ static int ext2_unmount __P((struct mount *, int, struct proc *)); static int ext2_vget __P((struct mount *, ino_t, struct vnode **)); static int ext2_vptofh __P((struct vnode *, struct fid *)); -static struct vfsops ext2fs_vfsops = { +struct vfsops ext2fs_vfsops = { MOUNT_EXT2FS, ext2_mount, ufs_start, /* empty function */ |