[NETFILTER]: Convert arp_tables targets to centralized error checking

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Patrick McHardy 2006-03-20 18:01:28 -08:00 committed by David S. Miller
parent 1d5cd90976
commit aa83c1ab43
2 changed files with 8 additions and 6 deletions

View file

@ -1143,11 +1143,13 @@ void arpt_unregister_table(struct arpt_table *table)
/* The built-in targets: standard (NULL) and error. */
static struct arpt_target arpt_standard_target = {
.name = ARPT_STANDARD_TARGET,
.targetsize = sizeof(int),
};
static struct arpt_target arpt_error_target = {
.name = ARPT_ERROR_TARGET,
.target = arpt_error,
.targetsize = ARPT_FUNCTION_MAXNAMELEN,
};
static struct nf_sockopt_ops arpt_sockopts = {

View file

@ -80,12 +80,12 @@ checkentry(const char *tablename, const void *e, void *targinfo,
return 1;
}
static struct arpt_target arpt_mangle_reg
= {
.name = "mangle",
.target = target,
.checkentry = checkentry,
.me = THIS_MODULE,
static struct arpt_target arpt_mangle_reg = {
.name = "mangle",
.target = target,
.targetsize = sizeof(struct arpt_mangle),
.checkentry = checkentry,
.me = THIS_MODULE,
};
static int __init init(void)