diff options
author | 2003-05-11 07:25:12 +0000 | |
---|---|---|
committer | 2003-05-11 07:25:12 +0000 | |
commit | d56d322d341d2ea47b333d4f426f92aae3ca4de6 (patch) | |
tree | f4646462424c88019259914201a6bc1f2272b99a | |
parent | Remove duplicate prototype. (diff) | |
download | wireguard-openbsd-d56d322d341d2ea47b333d4f426f92aae3ca4de6.tar.xz wireguard-openbsd-d56d322d341d2ea47b333d4f426f92aae3ca4de6.zip |
remove two remnants of an imaginary in-kernel AFS support
-rw-r--r-- | sys/kern/vfs_conf.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/sys/kern/vfs_conf.c b/sys/kern/vfs_conf.c index 33c398b18c8..6d9f0ac8c2a 100644 --- a/sys/kern/vfs_conf.c +++ b/sys/kern/vfs_conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_conf.c,v 1.17 2003/02/24 20:02:13 deraadt Exp $ */ +/* $OpenBSD: vfs_conf.c,v 1.18 2003/05/11 07:25:12 tedu Exp $ */ /* $NetBSD: vfs_conf.c,v 1.21.4.1 1995/11/01 00:06:26 jtc Exp $ */ /* @@ -127,10 +127,6 @@ extern struct vfsops kernfs_vfsops; extern struct vfsops procfs_vfsops; #endif -#ifdef AFS -extern struct vfsops afs_vfsops; -#endif - #ifdef CD9660 extern struct vfsops cd9660_vfsops; #endif @@ -194,11 +190,6 @@ static struct vfsconf vfsconflist[] = { { &nfs_vfsops, MOUNT_NFS, 2, 0, 0, nfs_mountroot, NULL }, #endif - /* Andrew Filesystem */ -#ifdef AFS - { &afs_vfsops, MOUNT_AFS, 13, 0, 0, afs_mountroot, NULL }, -#endif - /* XFS */ #ifdef XFS { &xfs_vfsops, MOUNT_XFS, 21, 0, 0, NULL, NULL }, |