aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/http/misc/httpreqdata.cpp
diff options
context:
space:
mode:
authortrofimenkov <trofimenkov@yandex-team.ru>2022-02-10 16:49:31 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:31 +0300
commit7c6139b61ced2798d1134b68b8facf6925a36b8e (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/http/misc/httpreqdata.cpp
parent30cebc2cfa79af3b577760a113e203a79450e6b6 (diff)
downloadydb-7c6139b61ced2798d1134b68b8facf6925a36b8e.tar.gz
Restoring authorship annotation for <trofimenkov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/http/misc/httpreqdata.cpp')
-rw-r--r--library/cpp/http/misc/httpreqdata.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/http/misc/httpreqdata.cpp b/library/cpp/http/misc/httpreqdata.cpp
index 4384caf0cf..f6951f68cd 100644
--- a/library/cpp/http/misc/httpreqdata.cpp
+++ b/library/cpp/http/misc/httpreqdata.cpp
@@ -21,7 +21,7 @@ TBaseServerRequestData::TBaseServerRequestData(const char* qs, SOCKET s)
, Path(nullptr)
, Search((char*)qs)
, SearchLength(qs ? strlen(qs) : 0)
- , OrigSearch(Search, SearchLength)
+ , OrigSearch(Search, SearchLength)
, Socket(s)
, BeginTime(MicroSeconds())
{
@@ -110,7 +110,7 @@ const char* TBaseServerRequestData::Environment(const char* key) const {
void TBaseServerRequestData::Clear() {
HeadersIn_.clear();
Addr = Path = Search = nullptr;
- OrigSearch = {};
+ OrigSearch = {};
SearchLength = 0;
Host.clear();
Port.clear();
@@ -174,8 +174,8 @@ bool TBaseServerRequestData::Parse(const char* origReq) {
} else {
SearchLength = 0;
}
- OrigSearch = {Search, SearchLength};
-
+ OrigSearch = {Search, SearchLength};
+
return true;
}