Fixed passing false in namespace flags.

This patch closes #328 in github.
This commit is contained in:
Tiago Natel
2019-10-11 10:00:06 +00:00
parent 09e7357b08
commit 0beb8ea5e1
4 changed files with 42 additions and 4 deletions

View File

@@ -228,6 +228,13 @@ nxt_conf_get_integer(nxt_conf_value_t *value)
}
uint8_t
nxt_conf_get_boolean(nxt_conf_value_t *value)
{
return value->u.boolean;
}
nxt_uint_t
nxt_conf_object_members_count(nxt_conf_value_t *value)
{