dect
/
linux-2.6
Archived
13
0
Fork 0

[NETFILTER]: x_tables: Fix typos after conversion to use mass registation helper

Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Thomas Graf 2006-08-22 13:52:17 -07:00 committed by David S. Miller
parent 3fd091e73b
commit 2809486424
2 changed files with 5 additions and 5 deletions

View File

@ -130,14 +130,14 @@ static struct xt_target xt_connsecmark_target[] = {
static int __init xt_connsecmark_init(void)
{
need_conntrack();
return xt_register_targets(xt_connsecmark_targets,
ARRAY_SIZE(xt_connsecmark_targets));
return xt_register_targets(xt_connsecmark_target,
ARRAY_SIZE(xt_connsecmark_target));
}
static void __exit xt_connsecmark_fini(void)
{
xt_unregister_targets(xt_connsecmark_targets,
ARRAY_SIZE(xt_connsecmark_targets));
xt_unregister_targets(xt_connsecmark_target,
ARRAY_SIZE(xt_connsecmark_target));
}
module_init(xt_connsecmark_init);

View File

@ -111,7 +111,7 @@ static int checkentry(const char *tablename, const void *entry,
return 1;
}
static struct xt_target xt_secmark_target = {
static struct xt_target xt_secmark_target[] = {
{
.name = "SECMARK",
.family = AF_INET,