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

This commit is contained in:
Bjoern A. Zeeb 2009-02-27 13:29:18 +00:00
parent 91c3cbfe1f
commit e4c38888b7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=189105

View File

@ -92,6 +92,9 @@ static const char rcsid[] = "@(#)$Id: ip_fil_freebsd.c,v 2.53.2.50 2007/09/20 12
#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_fil_freebsd.c,v 2.53.2.50 2007/09/20 12
#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