Index: sys/sys/mount.h =================================================================== RCS file: /home/ncvs/src/sys/sys/mount.h,v retrieving revision 1.134 diff -u -r1.134 mount.h --- sys/sys/mount.h 10 Aug 2002 20:19:00 -0000 1.134 +++ sys/sys/mount.h 11 Aug 2002 01:59:37 -0000 @@ -319,7 +319,6 @@ * type of filesystem supported by the kernel. These are searched at * mount time to identify the requested filesystem. */ -#ifdef _KERNEL struct vfsconf { struct vfsops *vfc_vfsops; /* filesystem operations vector */ char vfc_name[MFSNAMELEN]; /* filesystem type name */ @@ -327,17 +326,6 @@ int vfc_refcount; /* number mounted of this type */ int vfc_flags; /* permanent flags */ struct vfsoptdecl *vfc_opts; /* mount options */ - struct vfsconf *vfc_next; /* next in list */ -}; -#endif /* _KERNEL */ - -/* Userland version of the struct vfsconf. */ -struct xvfsconf { - struct vfsops *vfc_vfsops; /* filesystem operations vector */ - char vfc_name[MFSNAMELEN]; /* filesystem type name */ - int vfc_typenum; /* historic filesystem type number */ - int vfc_refcount; /* number mounted of this type */ - int vfc_flags; /* permanent flags */ struct vfsconf *vfc_next; /* next in list */ }; Index: usr.bin/lsvfs/lsvfs.c =================================================================== RCS file: /home/ncvs/src/usr.bin/lsvfs/lsvfs.c,v retrieving revision 1.16 diff -u -r1.16 lsvfs.c --- usr.bin/lsvfs/lsvfs.c 10 Aug 2002 20:19:03 -0000 1.16 +++ usr.bin/lsvfs/lsvfs.c 11 Aug 2002 01:59:37 -0000 @@ -10,6 +10,7 @@ #include #include +#include #include #include