summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-11-06 21:19:54 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-11-06 21:19:54 +0000
commitc40deccda1a5145413b1a52c9275d3c3c1406b4d (patch)
tree6da2b30e964e45fcd7943932a5f3258f8f448ba0 /sys/kern
parentc86308c5a78ceb904232c23e0d35c0d155cc3bf0 (diff)
complete ufs -> ffs change (From John Kohl; PR #1403)
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/vfs_conf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c
index b265cb3eedb..ff0f0e19f9d 100644
--- a/sys/kern/vfs_conf.c
+++ b/sys/kern/vfs_conf.c
@@ -1,4 +1,4 @@
-/* $NetBSD: vfs_conf.c,v 1.21 1994/06/29 06:33:52 cgd Exp $ */
+/* $NetBSD: vfs_conf.c,v 1.21.4.1 1995/11/01 00:06:26 jtc Exp $ */
/*
* Copyright (c) 1989, 1993
@@ -50,7 +50,7 @@ struct vnode *rootvnode;
* The types are defined in mount.h.
*/
#ifdef FFS
-extern struct vfsops ufs_vfsops;
+extern struct vfsops ffs_vfsops;
#endif
#ifdef LFS
@@ -116,7 +116,7 @@ extern struct vfsops adosfs_vfsops;
struct vfsops *vfssw[] = {
NULL, /* 0 = MOUNT_NONE */
#ifdef FFS
- &ufs_vfsops, /* 1 = MOUNT_UFS */
+ &ffs_vfsops, /* 1 = MOUNT_FFS */
#else
NULL,
#endif