2002-10-19 04:56:46

by Skip Ford

[permalink] [raw]
Subject: [PATCH] 2.5.44 net/ipv4/raw.c NF_IP_LOCAL_OUT undefined

net/ipv4/raw.c needs to include netfilter_ipv4.h instead of just
netfilter.h

--- linux/net/ipv4/raw.c~ Sat Oct 19 00:47:05 2002
+++ linux/net/ipv4/raw.c Sat Oct 19 00:47:11 2002
@@ -64,7 +64,7 @@
#include <net/raw.h>
#include <net/inet_common.h>
#include <net/checksum.h>
-#include <linux/netfilter.h>
+#include <linux/netfilter_ipv4.h>

struct sock *raw_v4_htable[RAWV4_HTABLE_SIZE];
rwlock_t raw_v4_lock = RW_LOCK_UNLOCKED;

--
Skip


2002-10-19 05:38:33

by David Miller

[permalink] [raw]
Subject: Re: [PATCH] 2.5.44 net/ipv4/raw.c NF_IP_LOCAL_OUT undefined

From: Skip Ford <[email protected]>
Date: Sat, 19 Oct 2002 00:59:08 -0400

net/ipv4/raw.c needs to include netfilter_ipv4.h instead of just
netfilter.h

Thanks for the fix, applied.