From b14c5eba10906735334cdc22ff48532391f4e6b2 Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Mon, 17 Feb 2014 01:05:37 +0100 Subject: ct: direction should be integer, not bitmask should always generate cmp op (its enum 0, 1 in kernel). Note: 'original,reply' will no longer work after this patch. Signed-off-by: Florian Westphal Acked-by: Pablo Neira Ayuso --- src/ct.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ct.c b/src/ct.c index f893df9a..79d4666c 100644 --- a/src/ct.c +++ b/src/ct.c @@ -61,7 +61,7 @@ static const struct datatype ct_dir_type = { .desc = "conntrack direction", .byteorder = BYTEORDER_INVALID, .size = BITS_PER_BYTE, - .basetype = &bitmask_type, + .basetype = &integer_type, .sym_tbl = &ct_dir_tbl, }; -- cgit v1.2.3