summaryrefslogtreecommitdiffstats
path: root/src/expr_ops.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr_ops.c')
-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 dd9cd2e..1c67fe8 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_log;
extern struct expr_ops expr_ops_lookup;
extern struct expr_ops expr_ops_match;
extern struct expr_ops expr_ops_meta;
@@ -23,6 +24,7 @@ struct expr_ops *expr_ops[] = {
&expr_ops_nat,
&expr_ops_payload,
&expr_ops_target,
+ &expr_ops_log,
&expr_ops_lookup,
NULL,
};