projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
94b2655
)
netfilter: ebt_ulog: fix checkentry return value
author
Patrick McHardy
<kaber@trash.net>
Tue, 1 Sep 2009 12:34:01 +0000
(14:34 +0200)
committer
Patrick McHardy
<kaber@trash.net>
Tue, 1 Sep 2009 12:34:01 +0000
(14:34 +0200)
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>
net/bridge/netfilter/ebt_ulog.c
patch
|
blob
|
history
diff --git
a/net/bridge/netfilter/ebt_ulog.c
b/net/bridge/netfilter/ebt_ulog.c
index 133eeae45a4f4ee7554c17e9c98867cb13f868fd..ce50688a6431681f55f979a1f674fc11fab31ba8 100644
(file)
--- 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 = {