summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2016-03-03 16:37:39 +0100
committerMattes D <github@xoft.cz>2016-03-03 16:37:39 +0100
commit39144480f588b60c246fbe0451b8002eaa6a0797 (patch)
tree8f5802529740a7db9b86bba94d5df9918a46566c
parentMerge pull request #3068 from cuberite/FinishHttpResponse (diff)
parentHTTP: Fixed header parsing. (diff)
downloadcuberite-39144480f588b60c246fbe0451b8002eaa6a0797.tar
cuberite-39144480f588b60c246fbe0451b8002eaa6a0797.tar.gz
cuberite-39144480f588b60c246fbe0451b8002eaa6a0797.tar.bz2
cuberite-39144480f588b60c246fbe0451b8002eaa6a0797.tar.lz
cuberite-39144480f588b60c246fbe0451b8002eaa6a0797.tar.xz
cuberite-39144480f588b60c246fbe0451b8002eaa6a0797.tar.zst
cuberite-39144480f588b60c246fbe0451b8002eaa6a0797.zip
-rw-r--r--src/HTTP/HTTPMessage.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/HTTP/HTTPMessage.cpp b/src/HTTP/HTTPMessage.cpp
index cf7525b6c..e1f237a7c 100644
--- a/src/HTTP/HTTPMessage.cpp
+++ b/src/HTTP/HTTPMessage.cpp
@@ -152,6 +152,7 @@ void cHTTPIncomingRequest::AddHeader(const AString & a_Key, const AString & a_Va
{
m_AllowKeepAlive = true;
}
+ Super::AddHeader(a_Key, a_Value);
}