Skip to content
Snippets Groups Projects
Commit 021d968e authored by ale's avatar ale
Browse files

Work around lack of ngx_table_elt_t.next

parent a6e29193
No related branches found
No related tags found
No related merge requests found
Pipeline #58642 failed
......@@ -251,7 +251,7 @@ ngx_int_t setHeader(ngx_http_request_t* r, StrView name, StrView value)
header->hash = hash;
header->key = toNgxStr(name);
header->lowcase_key = header->key.data;
header->next = NULL;
//header->next = NULL;
}
header->value = toNgxStr(value);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment