diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2011-02-06 21:34:33 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2011-02-06 21:34:33 +0100 |
commit | e76ec99b48745b0e3c8aecbc91ed5bba186cf25f (patch) | |
tree | a0c4e3dc52f5f21753a9205fee9e743eb49cd65d /libiptc.pc.in | |
parent | 9ee2a9fe2f74b616da34878104bd1ff406534ad1 (diff) |
libxt_cluster: fix inversion in the cluster match
In libxt_cluster.c, we use:
info->flags |= (1 << XT_CLUSTER_F_INV);
but we should use instead:
info->flags |= XT_CLUSTER_F_INV;
since the definition of XT_CLUSTER_F_INV is:
enum xt_cluster_flags {
XT_CLUSTER_F_INV = (1 << 0)
};
This fixes the inversion in the cluster match.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'libiptc.pc.in')
0 files changed, 0 insertions, 0 deletions