aboutsummaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorulanovgeorgiy <ulanovgeorgiy@yandex-team.ru>2022-02-10 16:50:37 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:37 +0300
commit36b9639452ec2d06ff4bd260c43677c4bc29dda8 (patch)
tree086a2eb3cf7ef54e68975b89626823fa86bb4aae /library
parent5ca39c6275c4cb3911098b94ffa1516f68b7d5e8 (diff)
downloadydb-36b9639452ec2d06ff4bd260c43677c4bc29dda8.tar.gz
Restoring authorship annotation for <ulanovgeorgiy@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library')
-rw-r--r--library/cpp/protobuf/util/pb_io.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/protobuf/util/pb_io.cpp b/library/cpp/protobuf/util/pb_io.cpp
index 6270ee0624..0790e6b950 100644
--- a/library/cpp/protobuf/util/pb_io.cpp
+++ b/library/cpp/protobuf/util/pb_io.cpp
@@ -22,7 +22,7 @@ namespace NProtoBuf {
};
void ParseFromBase64String(const TStringBuf dataBase64, Message& m, bool allowUneven) {
- if (!m.ParseFromString(allowUneven ? Base64DecodeUneven(dataBase64) : Base64StrictDecode(dataBase64))) {
+ if (!m.ParseFromString(allowUneven ? Base64DecodeUneven(dataBase64) : Base64StrictDecode(dataBase64))) {
ythrow yexception() << "can't parse " << m.GetTypeName() << " from base64-encoded string";
}
}