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/nfs/nfsnode.h | |
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/nfs/nfsnode.h')
-rw-r--r-- | sys/nfs/nfsnode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs/nfsnode.h b/sys/nfs/nfsnode.h index 880b356..6e04ed7 100644 --- a/sys/nfs/nfsnode.h +++ b/sys/nfs/nfsnode.h @@ -34,14 +34,14 @@ * SUCH DAMAGE. * * @(#)nfsnode.h 8.9 (Berkeley) 5/14/95 - * $Id: nfsnode.h,v 1.22 1997/10/15 07:42:34 phk Exp $ + * $Id: nfsnode.h,v 1.23 1997/10/16 10:49:05 phk Exp $ */ #ifndef _NFS_NFSNODE_H_ #define _NFS_NFSNODE_H_ -#ifndef _NFS_NFS_H_ +#if !defined(_NFS_NFS_H_) && !defined(KERNEL) #include <nfs/nfs.h> #endif |