Signed-off-by: Pablo Neira Ayuso <pa...@netfilter.org>
---
 src/evaluate.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/evaluate.c b/src/evaluate.c
index 265a73fe9b65..035d07632a9e 100644
--- a/src/evaluate.c
+++ b/src/evaluate.c
@@ -2956,6 +2956,7 @@ static int chain_evaluate(struct eval_ctx *ctx, struct 
chain *chain)
 
 static int table_evaluate(struct eval_ctx *ctx, struct table *table)
 {
+       struct flowtable *ft;
        struct chain *chain;
        struct set *set;
 
@@ -2984,6 +2985,12 @@ static int table_evaluate(struct eval_ctx *ctx, struct 
table *table)
                if (chain_evaluate(ctx, chain) < 0)
                        return -1;
        }
+       list_for_each_entry(ft, &table->flowtables, list) {
+               handle_merge(&ft->handle, &table->handle);
+               if (flowtable_evaluate(ctx, ft) < 0)
+                       return -1;
+       }
+
        ctx->table = NULL;
        return 0;
 }
-- 
2.11.0

--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to