svn commit: r189105 - head/sys/contrib/ipfilter/netinet

Bjoern A. Zeeb bz at FreeBSD.org
Fri Feb 27 05:29:18 PST 2009


Author: bz
Date: Fri Feb 27 13:29:18 2009
New Revision: 189105
URL: http://svn.freebsd.org/changeset/base/189105

Log:
  Move the include of vinet.h further up before the ipfilter includes.

Modified:
  head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c

Modified: head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c
==============================================================================
--- head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c	Fri Feb 27 13:28:54 2009	(r189104)
+++ head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c	Fri Feb 27 13:29:18 2009	(r189105)
@@ -92,6 +92,9 @@ static const char rcsid[] = "@(#)$Id: ip
 #include <netinet/udp.h>
 #include <netinet/tcpip.h>
 #include <netinet/ip_icmp.h>
+#if defined(__FreeBSD_version) && (__FreeBSD_version >= 800056)
+# include <netinet/vinet.h>
+#endif
 #ifndef _KERNEL
 # include "netinet/ipf.h"
 #endif
@@ -112,9 +115,6 @@ static const char rcsid[] = "@(#)$Id: ip
 #include "netinet/ip_scan.h"
 #endif
 #include "netinet/ip_pool.h"
-#if defined(__FreeBSD_version) && (__FreeBSD_version >= 800056)
-# include <netinet/vinet.h>
-#endif
 #if defined(__FreeBSD_version) && (__FreeBSD_version >= 300000)
 # include <sys/malloc.h>
 #endif


More information about the svn-src-all mailing list