iptables branch, master, updated. v1.4.10-51-ge76ec99

Pablo Neira Ayuso netfilter-cvslog-bounces at lists.netfilter.org
Sun Feb 6 21:41:44 CET 2011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "iptables".

The branch, master has been updated
       via  e76ec99b48745b0e3c8aecbc91ed5bba186cf25f (commit)
      from  9ee2a9fe2f74b616da34878104bd1ff406534ad1 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit e76ec99b48745b0e3c8aecbc91ed5bba186cf25f
Author: Pablo Neira Ayuso <pablo at netfilter.org>
Date:   Sun Feb 6 21:34:33 2011 +0100

    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 at netfilter.org>

-----------------------------------------------------------------------

Summary of changes:
 extensions/libxt_cluster.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
iptables



More information about the netfilter-cvslog mailing list