diff options
author | 1996-06-27 08:17:51 +0000 | |
---|---|---|
committer | 1996-06-27 08:17:51 +0000 | |
commit | e09b03ef02d86637f1bbf4ad528dc80dd9ccb33f (patch) | |
tree | 10fa9c59437610bddaa2d475f66043ba9533f817 | |
parent | Add ext2fs to the vfssw (diff) | |
download | wireguard-openbsd-e09b03ef02d86637f1bbf4ad528dc80dd9ccb33f.tar.xz wireguard-openbsd-e09b03ef02d86637f1bbf4ad528dc80dd9ccb33f.zip |
Make ext2fs_vfsops non-static
-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 */ |