summaryrefslogtreecommitdiffstats
path: root/input
diff options
context:
space:
mode:
authorregit <regit@ghlodit.inl.fr>2008-06-04 15:19:05 +0200
committerPatrick McHardy <kaber@trash.net>2008-06-04 15:19:05 +0200
commit6396a180f3f15e7417a81b44c61184828268b341 (patch)
tree8819d8bce84178dcc22179d881fc151a215e0406 /input
parentbffb313f5bddf51c086d3250b2b2359c4fe4892e (diff)
Fix crash when using NFCT with hash_enable=0.
This patch fixes NFCT when hash_enable is 0. Limitation of treatment to NFCT_DESTROY message type causes usage of the hashtable function and hence a crash because it is not initiated. Signed-off-by: regit <regit@ghlodit.inl.fr> Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'input')
-rw-r--r--input/flow/ulogd_inpflow_NFCT.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/input/flow/ulogd_inpflow_NFCT.c b/input/flow/ulogd_inpflow_NFCT.c
index dfb58d5..2a44780 100644
--- a/input/flow/ulogd_inpflow_NFCT.c
+++ b/input/flow/ulogd_inpflow_NFCT.c
@@ -625,7 +625,7 @@ static int event_handler(enum nf_conntrack_msg_type type,
.ct = ct,
};
- if (!usehash_ce(upi->config_kset).u.value && type == NFCT_T_DESTROY) {
+ if (!usehash_ce(upi->config_kset).u.value) {
switch(type) {
case NFCT_T_NEW:
gettimeofday(&tmp.time[START], NULL);