svn commit: r222765 - head/usr.sbin/tcpdrop

Bjoern A. Zeeb bz at FreeBSD.org
Mon Jun 6 17:07:39 UTC 2011


Author: bz
Date: Mon Jun  6 17:07:38 2011
New Revision: 222765
URL: http://svn.freebsd.org/changeset/base/222765

Log:
  Include param.h for CACHE_LINE_SIZE to unbreak the build.

Modified:
  head/usr.sbin/tcpdrop/tcpdrop.c

Modified: head/usr.sbin/tcpdrop/tcpdrop.c
==============================================================================
--- head/usr.sbin/tcpdrop/tcpdrop.c	Mon Jun  6 16:27:38 2011	(r222764)
+++ head/usr.sbin/tcpdrop/tcpdrop.c	Mon Jun  6 17:07:38 2011	(r222765)
@@ -20,12 +20,13 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
+#include <sys/param.h>
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/socketvar.h>
 #include <sys/sysctl.h>
-#include <netinet/in.h>
 
+#include <netinet/in.h>
 #include <netinet/in_pcb.h>
 #define TCPSTATES
 #include <netinet/tcp_fsm.h>


More information about the svn-src-head mailing list