summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQu Haoran <haoran.qu@6wind.com>2009-02-12 08:07:38 +0100
committerGreg Kroah-Hartman <gregkh@suse.de>2009-02-17 09:29:04 -0800
commit73a368388224240a18cf7810c401d3f3aca2c4ca (patch)
tree2163c3d4fd00aacd401ae88c220af6a94c6c614b
parenta04ce10376ed47a4eeb4120269c5dfaf9d3e0e51 (diff)
netfilter: xt_sctp: sctp chunk mapping doesn't work
netfilter: xt_sctp: sctp chunk mapping doesn't work Upstream commit: d4e2675a When user tries to map all chunks given in argument, kernel works on a copy of the chunkmap, but at the end it doesn't check the copy, but the orginal one. Signed-off-by: Qu Haoran <haoran.qu@6wind.com> Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com> Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--net/netfilter/xt_sctp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/xt_sctp.c b/net/netfilter/xt_sctp.c
index e223cb43ae8e..a189ada9128f 100644
--- a/net/netfilter/xt_sctp.c
+++ b/net/netfilter/xt_sctp.c
@@ -105,7 +105,7 @@ match_packet(const struct sk_buff *skb,
switch (chunk_match_type) {
case SCTP_CHUNK_MATCH_ALL:
- return SCTP_CHUNKMAP_IS_CLEAR(info->chunkmap);
+ return SCTP_CHUNKMAP_IS_CLEAR(chunkmapcopy);
case SCTP_CHUNK_MATCH_ANY:
return false;
case SCTP_CHUNK_MATCH_ONLY: