svn commit: r200582 - head/sys/netgraph

Luigi Rizzo luigi at FreeBSD.org
Tue Dec 15 10:33:12 PST 2009


Author: luigi
Date: Tue Dec 15 18:33:12 2009
New Revision: 200582
URL: http://svn.freebsd.org/changeset/base/200582

Log:
  add ip_fw_private.h to ng_ipfw.c, forgotten in previous commit;
  comment out remove ip_fw.h from ng_bridge.c, as it seems unused.
  
  MFC after:	1 month

Modified:
  head/sys/netgraph/ng_bridge.c
  head/sys/netgraph/ng_ipfw.c

Modified: head/sys/netgraph/ng_bridge.c
==============================================================================
--- head/sys/netgraph/ng_bridge.c	Tue Dec 15 18:09:07 2009	(r200581)
+++ head/sys/netgraph/ng_bridge.c	Tue Dec 15 18:33:12 2009	(r200582)
@@ -75,8 +75,9 @@
 #include <net/vnet.h>
 
 #include <netinet/in.h>
+#if 0	/* not used yet */
 #include <netinet/ip_fw.h>
-
+#endif
 #include <netgraph/ng_message.h>
 #include <netgraph/netgraph.h>
 #include <netgraph/ng_parse.h>

Modified: head/sys/netgraph/ng_ipfw.c
==============================================================================
--- head/sys/netgraph/ng_ipfw.c	Tue Dec 15 18:09:07 2009	(r200581)
+++ head/sys/netgraph/ng_ipfw.c	Tue Dec 15 18:33:12 2009	(r200582)
@@ -44,6 +44,7 @@
 #include <netinet/in_systm.h>
 #include <netinet/in_var.h>
 #include <netinet/ip_fw.h>
+#include <netinet/ipfw/ip_fw_private.h>
 #include <netinet/ip.h>
 #include <netinet/ip_var.h>
 


More information about the svn-src-head mailing list