aboutsummaryrefslogtreecommitdiffstats
path: root/net/bridge
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2009-09-01 14:34:01 +0200
committerPatrick McHardy <kaber@trash.net>2009-09-01 14:34:01 +0200
commit8a56df0ae1690f8f42a3c6c4532f4b06f93febea (patch)
treed5227a7629942deaa5f632675894060494ecea85 /net/bridge
parentIPVS: Add handling of incoming ICMPV6 messages (diff)
downloadlinux-dev-8a56df0ae1690f8f42a3c6c4532f4b06f93febea.tar.xz
linux-dev-8a56df0ae1690f8f42a3c6c4532f4b06f93febea.zip
netfilter: ebt_ulog: fix checkentry return value
Commit 19eda87 (netfilter: change return types of check functions for Ebtables extensions) broke the ebtables ulog module by missing a return value conversion. Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/bridge')
-rw-r--r--net/bridge/netfilter/ebt_ulog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/netfilter/ebt_ulog.c b/net/bridge/netfilter/ebt_ulog.c
index 133eeae45a4f..ce50688a6431 100644
--- a/net/bridge/netfilter/ebt_ulog.c
+++ b/net/bridge/netfilter/ebt_ulog.c
@@ -266,7 +266,7 @@ static bool ebt_ulog_tg_check(const struct xt_tgchk_param *par)
if (uloginfo->qthreshold > EBT_ULOG_MAX_QLEN)
uloginfo->qthreshold = EBT_ULOG_MAX_QLEN;
- return 0;
+ return true;
}
static struct xt_target ebt_ulog_tg_reg __read_mostly = {