2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-10-21 14:47:45 +00:00

[trac781] minor editorial cleanup (basically along with the style guideline)

and constify one thing
This commit is contained in:
JINMEI Tatuya
2011-04-20 11:26:09 -07:00
parent 246e56b3bb
commit fb7877b06b
4 changed files with 15 additions and 15 deletions

View File

@@ -89,7 +89,7 @@ public:
void sign(isc::dns::OutputBuffer& result, size_t len) {
try {
Botan::SecureVector<Botan::byte> b_result(hmac_->final());
if (len == 0 || len > b_result.size()) {
len = b_result.size();
}