[conntrack-tools] config: nl_overrun must be signed int instead of unsigned

Pablo Neira netfilter-cvslog-bounces at lists.netfilter.org
Fri Feb 13 15:49:00 CET 2009


Gitweb:		http://git.netfilter.org/cgi-bin/gitweb.cgi?p=conntrack-tools.git;a=commit;h=275658627fdedede0475a51a01145b466cf55d38
commit 275658627fdedede0475a51a01145b466cf55d38
Author:     Pablo Neira Ayuso <pablo at netfilter.org>
AuthorDate: Fri Feb 13 15:48:11 2009 +0100
Commit:     Pablo Neira Ayuso <pablo at netfilter.org>
CommitDate: Fri Feb 13 15:48:11 2009 +0100

    config: nl_overrun must be signed int instead of unsigned
    
    This patch fixes the disabling on NetlinkOverrunResync, which
    was broken.
    
    Signed-off-by: Pablo Neira Ayuso <pablo at netfilter.org>
       via  275658627fdedede0475a51a01145b466cf55d38 (commit)
      from  7f902c8419c891ec3ec83d40fb30afccb2a150c6 (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 275658627fdedede0475a51a01145b466cf55d38
Author: Pablo Neira Ayuso <pablo at netfilter.org>
Date:   Fri Feb 13 15:48:11 2009 +0100

    config: nl_overrun must be signed int instead of unsigned
    
    This patch fixes the disabling on NetlinkOverrunResync, which
    was broken.
    
    Signed-off-by: Pablo Neira Ayuso <pablo at netfilter.org>

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

 include/conntrackd.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
This patch fixes the disabling on NetlinkOverrunResync, which
was broken.

Signed-off-by: Pablo Neira Ayuso <pablo at netfilter.org>

diff --git a/include/conntrackd.h b/include/conntrackd.h
index 2aaa6e6..bb038a9 100644
--- a/include/conntrackd.h
+++ b/include/conntrackd.h
@@ -81,7 +81,7 @@ struct ct_conf {
 	unsigned int purge_timeout;	/* purge kernel entries timeout */
 	unsigned int netlink_buffer_size;
 	unsigned int netlink_buffer_size_max_grown;
-	unsigned int nl_overrun_resync;
+	int nl_overrun_resync;
 	union inet_address *listen_to;
 	unsigned int listen_to_len;
 	unsigned int flags;



More information about the netfilter-cvslog mailing list