diff options
author | luigi <luigi@FreeBSD.org> | 2009-12-15 18:33:12 +0000 |
---|---|---|
committer | luigi <luigi@FreeBSD.org> | 2009-12-15 18:33:12 +0000 |
commit | 38b08bc77904d09e711cd0d6d27ed8e88f11b92c (patch) | |
tree | 5f2bf0e7fd550c8dfb1843f3cefeb18d8567c642 /sys/netgraph | |
parent | c4e6c7a490d49b3d223f8dfbc5978cd7abefc6ff (diff) | |
download | FreeBSD-src-38b08bc77904d09e711cd0d6d27ed8e88f11b92c.zip FreeBSD-src-38b08bc77904d09e711cd0d6d27ed8e88f11b92c.tar.gz |
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
Diffstat (limited to 'sys/netgraph')
-rw-r--r-- | sys/netgraph/ng_bridge.c | 3 | ||||
-rw-r--r-- | sys/netgraph/ng_ipfw.c | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sys/netgraph/ng_bridge.c b/sys/netgraph/ng_bridge.c index c6f4183..35e1392 100644 --- a/sys/netgraph/ng_bridge.c +++ b/sys/netgraph/ng_bridge.c @@ -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> diff --git a/sys/netgraph/ng_ipfw.c b/sys/netgraph/ng_ipfw.c index 46bac8e..2f80945 100644 --- a/sys/netgraph/ng_ipfw.c +++ b/sys/netgraph/ng_ipfw.c @@ -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> |