summaryrefslogtreecommitdiffstats
path: root/kernel/linux2.5/net/bridge/netfilter/ebt_arp.c
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2003-06-04 06:25:32 +0000
committerBart De Schuymer <bdschuym@pandora.be>2003-06-04 06:25:32 +0000
commitb2d2ce07b7356b8597991986fe80fdf6bb465309 (patch)
tree129b17db38348c828d84e2c0aeb3fdafeb794ce4 /kernel/linux2.5/net/bridge/netfilter/ebt_arp.c
parent1e0cbd87722f91b0a56f01f212f919d4f4a3a21a (diff)
revert back to 2.5.70
Diffstat (limited to 'kernel/linux2.5/net/bridge/netfilter/ebt_arp.c')
-rw-r--r--kernel/linux2.5/net/bridge/netfilter/ebt_arp.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/kernel/linux2.5/net/bridge/netfilter/ebt_arp.c b/kernel/linux2.5/net/bridge/netfilter/ebt_arp.c
index 16cec6d..d63d720 100644
--- a/kernel/linux2.5/net/bridge/netfilter/ebt_arp.c
+++ b/kernel/linux2.5/net/bridge/netfilter/ebt_arp.c
@@ -94,17 +94,13 @@ static int ebt_filter_arp(const struct sk_buff *skb, const struct net_device *in
return EBT_MATCH;
}
-static struct ebt_match filter_arp;
static int ebt_arp_check(const char *tablename, unsigned int hookmask,
- const struct ebt_entry *e, void *data, unsigned int datalen,
- unsigned int version)
+ const struct ebt_entry *e, void *data, unsigned int datalen)
{
struct ebt_arp_info *info = (struct ebt_arp_info *)data;
if (datalen != sizeof(struct ebt_arp_info))
return -EINVAL;
- if (ebt_check_version(version, filter_arp.version, filter_arp.name))
- return -EINVAL;
if ((e->ethproto != __constant_htons(ETH_P_ARP) &&
e->ethproto != __constant_htons(ETH_P_RARP)) ||
e->invflags & EBT_IPROTO)
@@ -120,7 +116,6 @@ static struct ebt_match filter_arp =
.match = ebt_filter_arp,
.check = ebt_arp_check,
.me = THIS_MODULE,
- .version = VERSIONIZE(1,0),
};
static int __init init(void)