Style and a trivial fix.
This commit is contained in:
@@ -18,7 +18,7 @@ typedef struct {
|
|||||||
} nxt_conf_json_pretty_t;
|
} nxt_conf_json_pretty_t;
|
||||||
|
|
||||||
|
|
||||||
nxt_conf_json_value_t *nxt_conf_json_value_get(nxt_conf_json_value_t *value,
|
nxt_conf_json_value_t *nxt_conf_json_get_value(nxt_conf_json_value_t *value,
|
||||||
nxt_str_t *path);
|
nxt_str_t *path);
|
||||||
nxt_conf_json_value_t *nxt_conf_json_object_get_member(
|
nxt_conf_json_value_t *nxt_conf_json_object_get_member(
|
||||||
nxt_conf_json_value_t *value, u_char *name, size_t length);
|
nxt_conf_json_value_t *value, u_char *name, size_t length);
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ nxt_conf_json_indentation(u_char *pos, nxt_conf_json_pretty_t *pretty)
|
|||||||
|
|
||||||
|
|
||||||
nxt_conf_json_value_t *
|
nxt_conf_json_value_t *
|
||||||
nxt_conf_json_value_get(nxt_conf_json_value_t *value, nxt_str_t *path)
|
nxt_conf_json_get_value(nxt_conf_json_value_t *value, nxt_str_t *path)
|
||||||
{
|
{
|
||||||
u_char *p, *start, *end;
|
u_char *p, *start, *end;
|
||||||
|
|
||||||
@@ -397,7 +397,7 @@ nxt_conf_json_parse_object(u_char *pos, u_char *end,
|
|||||||
object = nxt_mem_alloc(pool, sizeof(nxt_conf_json_object_t)
|
object = nxt_mem_alloc(pool, sizeof(nxt_conf_json_object_t)
|
||||||
+ count * sizeof(nxt_conf_json_obj_member_t));
|
+ count * sizeof(nxt_conf_json_obj_member_t));
|
||||||
if (nxt_slow_path(object == NULL)) {
|
if (nxt_slow_path(object == NULL)) {
|
||||||
return NULL;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
value->u.object = object;
|
value->u.object = object;
|
||||||
|
|||||||
@@ -571,7 +571,7 @@ nxt_controller_process_request(nxt_task_t *task, nxt_event_conn_t *c,
|
|||||||
path.length = req->parser.target_end - path.start;
|
path.length = req->parser.target_end - path.start;
|
||||||
}
|
}
|
||||||
|
|
||||||
value = nxt_conf_json_value_get(nxt_controller_conf.root, &path);
|
value = nxt_conf_json_get_value(nxt_controller_conf.root, &path);
|
||||||
|
|
||||||
if (value != NULL) {
|
if (value != NULL) {
|
||||||
nxt_str_set(&resp.status_line, "200 OK");
|
nxt_str_set(&resp.status_line, "200 OK");
|
||||||
|
|||||||
Reference in New Issue
Block a user