diff options
author | Andrey Fomichev <andrey.fomichev@gmail.com> | 2022-02-10 16:49:12 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:12 +0300 |
commit | e542cc14db4240643a06bb0dde87ecf361f101ab (patch) | |
tree | 3b03a4b94acd11a4eca042532035806e5fa08ad1 /library/cpp/http/misc | |
parent | e2ac73225f30f7fcf7df3cb225cba257f56144c1 (diff) | |
download | ydb-e542cc14db4240643a06bb0dde87ecf361f101ab.tar.gz |
Restoring authorship annotation for Andrey Fomichev <andrey.fomichev@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/http/misc')
-rw-r--r-- | library/cpp/http/misc/httpcodes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/http/misc/httpcodes.cpp b/library/cpp/http/misc/httpcodes.cpp index ad8c80ac1e..b2aab8a001 100644 --- a/library/cpp/http/misc/httpcodes.cpp +++ b/library/cpp/http/misc/httpcodes.cpp @@ -46,7 +46,7 @@ TStringBuf HttpCodeStrEx(int code) noexcept { return TStringBuf("307 Temporarily redirect"); case HTTP_PERMANENT_REDIRECT: return TStringBuf("308 Permanent redirect"); - + case HTTP_BAD_REQUEST: return TStringBuf("400 Bad request"); case HTTP_UNAUTHORIZED: @@ -134,7 +134,7 @@ TStringBuf HttpCodeStrEx(int code) noexcept { return TStringBuf("511 Network Authentication Required"); case HTTP_UNASSIGNED_512: return TStringBuf("512 Unassigned"); - + default: return TStringBuf("000 Unknown HTTP code"); } |