summaryrefslogtreecommitdiffstats
path: root/src/rt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt.c')
-rw-r--r--src/rt.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rt.c b/src/rt.c
index 2530b663..caa4947d 100644
--- a/src/rt.c
+++ b/src/rt.c
@@ -22,6 +22,7 @@
#include <datatype.h>
#include <rt.h>
#include <rule.h>
+#include <json.h>
static struct symbol_table *realm_tbl;
void realm_table_rt_init(void)
@@ -112,6 +113,7 @@ static const struct expr_ops rt_expr_ops = {
.type = EXPR_RT,
.name = "rt",
.print = rt_expr_print,
+ .json = rt_expr_json,
.cmp = rt_expr_cmp,
.clone = rt_expr_clone,
};