aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-3.0
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-08-07 21:17:18 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-08-07 21:17:18 +0000
commitba9e7889dd564e9c436df1751fc05f381772680c (patch)
tree9e640d6c720e7cb8e09f0064659a328595fa022a /target/linux/generic/patches-3.0
parent6474dbe86b78062fa5858ab55c3a28de42147a8f (diff)
downloadupstream-ba9e7889dd564e9c436df1751fc05f381772680c.tar.gz
upstream-ba9e7889dd564e9c436df1751fc05f381772680c.tar.bz2
upstream-ba9e7889dd564e9c436df1751fc05f381772680c.zip
kernel: fix another typo in the netfilter optimization patches
SVN-Revision: 27927
Diffstat (limited to 'target/linux/generic/patches-3.0')
-rw-r--r--target/linux/generic/patches-3.0/612-netfilter_match_reduce_memory_access.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic/patches-3.0/612-netfilter_match_reduce_memory_access.patch b/target/linux/generic/patches-3.0/612-netfilter_match_reduce_memory_access.patch
index 817b37efd1..f506165e1d 100644
--- a/target/linux/generic/patches-3.0/612-netfilter_match_reduce_memory_access.patch
+++ b/target/linux/generic/patches-3.0/612-netfilter_match_reduce_memory_access.patch
@@ -9,7 +9,7 @@
+ (ip->saddr&ipinfo->smsk.s_addr) != ipinfo->src.s_addr,
IPT_INV_SRCIP) ||
- FWINV((ip->daddr&ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr,
-+ FWINV(ipinfo->smsk.s_addr &&
++ FWINV(ipinfo->dmsk.s_addr &&
+ (ip->daddr&ipinfo->dmsk.s_addr) != ipinfo->dst.s_addr,
IPT_INV_DSTIP)) {
dprintf("Source or dest mismatch.\n");