diff options
author | bde <bde@FreeBSD.org> | 1997-10-28 14:06:25 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-10-28 14:06:25 +0000 |
commit | 974f2bea1556f5ae1054c9eb170a5205429a982a (patch) | |
tree | e6a6714c7dba79060a881e95979c84486a37eacd /sys/nfsclient/nfs_vfsops.c | |
parent | 442881c24b12136177346166ba208b0cf9385677 (diff) | |
download | FreeBSD-src-974f2bea1556f5ae1054c9eb170a5205429a982a.zip FreeBSD-src-974f2bea1556f5ae1054c9eb170a5205429a982a.tar.gz |
Don't #include <nfs/nfs.h> in <nfs/nfs_node.h> if KERNEL is defined.
Fixed everything that depended on the nested include.
Diffstat (limited to 'sys/nfsclient/nfs_vfsops.c')
-rw-r--r-- | sys/nfsclient/nfs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfsclient/nfs_vfsops.c b/sys/nfsclient/nfs_vfsops.c index 011b4ab..ca44905 100644 --- a/sys/nfsclient/nfs_vfsops.c +++ b/sys/nfsclient/nfs_vfsops.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_vfsops.c 8.12 (Berkeley) 5/20/95 - * $Id: nfs_vfsops.c,v 1.48 1997/09/10 19:52:26 phk Exp $ + * $Id: nfs_vfsops.c,v 1.49 1997/10/12 20:25:49 phk Exp $ */ #include <sys/param.h> @@ -64,8 +64,8 @@ #include <nfs/rpcv2.h> #include <nfs/nfsproto.h> -#include <nfs/nfsnode.h> #include <nfs/nfs.h> +#include <nfs/nfsnode.h> #include <nfs/nfsmount.h> #include <nfs/xdr_subs.h> #include <nfs/nfsm_subs.h> |