Skip to content
Snippets Groups Projects
Commit 0e3e2156 authored by Marek Vavruša's avatar Marek Vavruša
Browse files

daemon/bindings: missing brk in wrapped lookup tables

parent 87ad66ee
Branches
Tags
No related merge requests found
......@@ -66,6 +66,7 @@ static lookup_table_t rrtype_names[] = {
#define X(rc) { KNOT_RRTYPE_ ## rc, #rc },
RECORD_TYPES(X)
#undef X
{ 0, NULL }
};
/*
......@@ -84,6 +85,7 @@ static lookup_table_t wire_flag_names[] = {
#define X(flag, _) { WIRE_ ## flag, #flag },
WIRE_FLAGS(X)
#undef X
{ 0, NULL }
};
static int pkt_flag(lua_State *L)
......
......@@ -33,6 +33,7 @@ const lookup_table_t query_flag_names[] = {
#define X(flag, _) { QUERY_ ## flag, #flag },
QUERY_FLAGS(X)
#undef X
{ 0, NULL }
};
static struct kr_query *query_create(mm_ctx_t *pool, const knot_dname_t *name)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment