diff options
Diffstat (limited to 'src/mongo/crypto/sha_block.h')
-rw-r--r-- | src/mongo/crypto/sha_block.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mongo/crypto/sha_block.h b/src/mongo/crypto/sha_block.h index 2d2c3684e07..78308bb568b 100644 --- a/src/mongo/crypto/sha_block.h +++ b/src/mongo/crypto/sha_block.h @@ -67,9 +67,9 @@ public: */ static StatusWith<SHABlock> fromBuffer(const uint8_t* input, size_t inputLen) { if (inputLen != kHashLength) { - return { - ErrorCodes::InvalidLength, - str::stream() << "Unsupported " << Traits::name << " hash length: " << inputLen}; + return {ErrorCodes::InvalidLength, + str::stream() << "Unsupported " << Traits::name + << " hash length: " << inputLen}; } HashType newHash; @@ -157,8 +157,8 @@ public: if (binData.length != kHashLength) { return {ErrorCodes::UnsupportedFormat, - str::stream() << "Unsupported " << Traits::name << " hash length: " - << binData.length}; + str::stream() << "Unsupported " << Traits::name + << " hash length: " << binData.length}; } HashType newHash; |