From 4033e07e8d48a29311f58ec2c3d33cf246989856 Mon Sep 17 00:00:00 2001 From: Maxime Henrion Date: Sun, 11 Aug 2002 02:03:44 +0000 Subject: [PATCH] Don't #ifdef _KERNEL struct vfsconf, mount_smbfs(8) still uses it. Submitted by: jake --- sys/sys/mount.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/sys/mount.h b/sys/sys/mount.h index f5b64d24d53e..30e70925ea17 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -319,7 +319,6 @@ struct nfs_public { * 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 */ @@ -329,7 +328,6 @@ struct vfsconf { struct vfsoptdecl *vfc_opts; /* mount options */ struct vfsconf *vfc_next; /* next in list */ }; -#endif /* _KERNEL */ /* Userland version of the struct vfsconf. */ struct xvfsconf {