0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-10 12:01:15 +01:00

ircd::client: Fix response code from header parse failure handler.

This commit is contained in:
Jason Volk 2019-03-13 12:37:06 -07:00
parent b3526298a9
commit 15b25894d3

View file

@ -820,7 +820,7 @@ catch(const http::error &e)
{
log::derror
{
resource::log, "%s HTTP 400 BAD REQUEST :%u %s :%s",
resource::log, "%s HTTP %u %s :%s",
loghead(),
uint(e.code),
http::status(e.code),
@ -833,7 +833,7 @@ catch(const http::error &e)
const ctx::exception_handler eh;
resource::response
{
*this, e.content, "text/html; charset=utf-8", http::BAD_REQUEST, e.headers
*this, e.content, "text/html; charset=utf-8", e.code, e.headers
};
return false;