summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2013-04-14 12:44:51 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2013-04-14 12:44:51 +0200
commit5ff34f1434c6e7af8762de826c02f05ecd109783 (patch)
tree6d508e8027560a303b281f8056797d669b957126 /src
parent52ad14dc07a6eaef11722e2421312f02b0aed11b (diff)
expr: lookup: fix missing registration
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src')
-rw-r--r--src/expr_ops.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/expr_ops.c b/src/expr_ops.c
index 6a5a697..dd9cd2e 100644
--- a/src/expr_ops.c
+++ b/src/expr_ops.c
@@ -6,6 +6,7 @@ extern struct expr_ops expr_ops_bitwise;
extern struct expr_ops expr_ops_cmp;
extern struct expr_ops expr_ops_counter;
extern struct expr_ops expr_ops_immediate;
+extern struct expr_ops expr_ops_lookup;
extern struct expr_ops expr_ops_match;
extern struct expr_ops expr_ops_meta;
extern struct expr_ops expr_ops_nat;
@@ -22,6 +23,7 @@ struct expr_ops *expr_ops[] = {
&expr_ops_nat,
&expr_ops_payload,
&expr_ops_target,
+ &expr_ops_lookup,
NULL,
};