aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2008-10-08 05:35:16 -0400
committerPatrick McHardy <kaber@trash.net>2008-10-08 05:35:16 -0400
commit147c3844ad381b58715a6ee2ea697594e3c06284 (patch)
treec79d3d3041393230ff1c470d5863996567a98d4d
parentf7277f8d3aa4d3f99a9bdb48b27a2344a637a4b2 (diff)
netfilter: ebtables: fix one wrong return value
Usually -EINVAL is used when checkentry fails (see *_tables). Signed-off-by: Jan Engelhardt <jengelh@medozas.de> Signed-off-by: Patrick McHardy <kaber@trash.net>
-rw-r--r--net/bridge/netfilter/ebtables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/netfilter/ebtables.c b/net/bridge/netfilter/ebtables.c
index b489ed262fa5..7d8ead52d25f 100644
--- a/net/bridge/netfilter/ebtables.c
+++ b/net/bridge/netfilter/ebtables.c
@@ -699,7 +699,7 @@ ebt_check_entry(struct ebt_entry *e, struct ebt_table_info *newinfo,
699 } else if (t->u.target->checkentry && 699 } else if (t->u.target->checkentry &&
700 !t->u.target->checkentry(name, e, NULL, t->data, hookmask)) { 700 !t->u.target->checkentry(name, e, NULL, t->data, hookmask)) {
701 module_put(t->u.target->me); 701 module_put(t->u.target->me);
702 ret = -EFAULT; 702 ret = -EINVAL;
703 goto cleanup_watchers; 703 goto cleanup_watchers;
704 } 704 }
705 (*cnt)++; 705 (*cnt)++;