aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/http/misc
diff options
context:
space:
mode:
authorvi002 <vi002@yandex-team.ru>2022-02-10 16:49:43 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:43 +0300
commitada28932b0745610cbe6b7e1820a3bf661dd5d10 (patch)
tree1f646eb5bc2bf56768fbd742ad512c17e5e7149e /library/cpp/http/misc
parente990833b6d2409c81ebfaf00757131a791b02f6d (diff)
downloadydb-ada28932b0745610cbe6b7e1820a3bf661dd5d10.tar.gz
Restoring authorship annotation for <vi002@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/http/misc')
-rw-r--r--library/cpp/http/misc/httpcodes.cpp2
-rw-r--r--library/cpp/http/misc/httpcodes.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/http/misc/httpcodes.cpp b/library/cpp/http/misc/httpcodes.cpp
index ad8c80ac1e..3b9ecd2743 100644
--- a/library/cpp/http/misc/httpcodes.cpp
+++ b/library/cpp/http/misc/httpcodes.cpp
@@ -132,7 +132,7 @@ TStringBuf HttpCodeStrEx(int code) noexcept {
return TStringBuf("510 Not Extended");
case HTTP_NETWORK_AUTHENTICATION_REQUIRED:
return TStringBuf("511 Network Authentication Required");
- case HTTP_UNASSIGNED_512:
+ case HTTP_UNASSIGNED_512:
return TStringBuf("512 Unassigned");
default:
diff --git a/library/cpp/http/misc/httpcodes.h b/library/cpp/http/misc/httpcodes.h
index cbfbaa1188..63cc126849 100644
--- a/library/cpp/http/misc/httpcodes.h
+++ b/library/cpp/http/misc/httpcodes.h
@@ -70,7 +70,7 @@ enum HttpCodes {
HTTP_BANDWIDTH_LIMIT_EXCEEDED = 509,
HTTP_NOT_EXTENDED = 510,
HTTP_NETWORK_AUTHENTICATION_REQUIRED = 511,
- HTTP_UNASSIGNED_512 = 512,
+ HTTP_UNASSIGNED_512 = 512,
HTTP_CODE_MAX
};