From 9daf40feaa01ca12548763a62d53fad0a03b9ef0 Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Thu, 15 Aug 2002 14:34:02 +0000 Subject: [PATCH] Perform a nested include of _label.h if #ifdef _KERNEL. This will satisfy consumers of ip_var.h that need a complete definition of struct ipq and don't include mac.h. Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs --- sys/netinet/ip_var.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/netinet/ip_var.h b/sys/netinet/ip_var.h index 4efb58930d5d..e1f8465cbcfc 100644 --- a/sys/netinet/ip_var.h +++ b/sys/netinet/ip_var.h @@ -39,6 +39,10 @@ #include +#ifdef _KERNEL +#include +#endif + /* * Overlay for ip header used by other protocols (tcp, udp). */