Commit 49448a2f authored by Harald Welte's avatar Harald Welte Committed by Stephen Hemminger

[NETFILTER]: Cosmetic update to ip6t_ipv6header.

parent 803cda72
...@@ -126,18 +126,11 @@ ipv6header_checkentry(const char *tablename, ...@@ -126,18 +126,11 @@ ipv6header_checkentry(const char *tablename,
return 1; return 1;
} }
static void
ipv6header_destroy(void *matchinfo,
unsigned int matchinfosize)
{
return;
}
static struct ip6t_match ip6t_ipv6header_match = { static struct ip6t_match ip6t_ipv6header_match = {
.name = "ipv6header", .name = "ipv6header",
.match = &ipv6header_match, .match = &ipv6header_match,
.checkentry = &ipv6header_checkentry, .checkentry = &ipv6header_checkentry,
.destroy = &ipv6header_destroy, .destroy = NULL,
.me = THIS_MODULE, .me = THIS_MODULE,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment