Merge branch 'nf' of git://1984.lsi.us.es/net

This commit is contained in:
David S. Miller 2011-12-23 14:29:20 -05:00
commit 6350323ad8
1 changed files with 3 additions and 3 deletions

View File

@ -87,10 +87,10 @@ connbytes_mt(const struct sk_buff *skb, struct xt_action_param *par)
break;
}
if (sinfo->count.to)
if (sinfo->count.to >= sinfo->count.from)
return what <= sinfo->count.to && what >= sinfo->count.from;
else
return what >= sinfo->count.from;
else /* inverted */
return what < sinfo->count.to || what > sinfo->count.from;
}
static int connbytes_mt_check(const struct xt_mtchk_param *par)