aboutsummaryrefslogtreecommitdiff
path: root/sys/msdosfs
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-09-07 13:17:06 +0000
committerBruce Evans <bde@FreeBSD.org>1998-09-07 13:17:06 +0000
commit8994ca3ce90e6f418425eefc56cf9da849b0ab59 (patch)
treef865d1a94c2fb8a38b3fa9e0e6cba707cbe3c7cf /sys/msdosfs
parentef949dd17d7a80e96082f9b8b10dd537caeaa021 (diff)
downloadsrc-8994ca3ce90e6f418425eefc56cf9da849b0ab59.tar.gz
src-8994ca3ce90e6f418425eefc56cf9da849b0ab59.zip
Removed statically configured mount type numbers (MOUNT_*) and all
references to them. The change a couple of days ago to ignore these numbers in statically configured vfsconf structs was slightly premature because the cd9660, cfs, devfs, ext2fs, nfs vfs's still used MOUNT_* instead of the number in their vfsconf struct.
Notes
Notes: svn path=/head/; revision=38909
Diffstat (limited to 'sys/msdosfs')
-rw-r--r--sys/msdosfs/msdosfs_vfsops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/msdosfs/msdosfs_vfsops.c b/sys/msdosfs/msdosfs_vfsops.c
index 1a03f6265c08..42798d765e7b 100644
--- a/sys/msdosfs/msdosfs_vfsops.c
+++ b/sys/msdosfs/msdosfs_vfsops.c
@@ -1,4 +1,4 @@
-/* $Id: msdosfs_vfsops.c,v 1.34 1998/04/29 12:55:51 dt Exp $ */
+/* $Id: msdosfs_vfsops.c,v 1.35 1998/05/06 05:29:38 msmith Exp $ */
/* $NetBSD: msdosfs_vfsops.c,v 1.51 1997/11/17 15:36:58 ws Exp $ */
/*-
@@ -1015,4 +1015,4 @@ static struct vfsops msdosfs_vfsops = {
msdosfs_init
};
-VFS_SET(msdosfs_vfsops, msdos, MOUNT_MSDOS, 0);
+VFS_SET(msdosfs_vfsops, msdos, 0);