diff options
author | bde <bde@FreeBSD.org> | 1998-09-07 13:17:06 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-09-07 13:17:06 +0000 |
commit | e170b2ba75b8cd52b3975e18747bd7f39539bb64 (patch) | |
tree | dfc401eb554740bf76aee34e0c28e57e54044a9e /sys/fs/procfs | |
parent | 166f26e95248d6d21790e846f2ada78c43dffd8f (diff) | |
download | FreeBSD-src-e170b2ba75b8cd52b3975e18747bd7f39539bb64.zip FreeBSD-src-e170b2ba75b8cd52b3975e18747bd7f39539bb64.tar.gz |
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.
Diffstat (limited to 'sys/fs/procfs')
-rw-r--r-- | sys/fs/procfs/procfs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/fs/procfs/procfs_vfsops.c b/sys/fs/procfs/procfs_vfsops.c index ef4c4da..ac1ab53 100644 --- a/sys/fs/procfs/procfs_vfsops.c +++ b/sys/fs/procfs/procfs_vfsops.c @@ -36,7 +36,7 @@ * * @(#)procfs_vfsops.c 8.7 (Berkeley) 5/10/95 * - * $Id: procfs_vfsops.c,v 1.24 1998/07/27 01:07:01 alex Exp $ + * $Id: procfs_vfsops.c,v 1.25 1998/07/27 22:47:17 alex Exp $ */ /* @@ -212,4 +212,4 @@ static struct vfsops procfs_vfsops = { procfs_init, }; -VFS_SET(procfs_vfsops, procfs, MOUNT_PROCFS, VFCF_SYNTHETIC); +VFS_SET(procfs_vfsops, procfs, VFCF_SYNTHETIC); |