diff options
Diffstat (limited to 'src/lib/dns/util/sha1.cc')
-rw-r--r-- | src/lib/dns/util/sha1.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/dns/util/sha1.cc b/src/lib/dns/util/sha1.cc index 1513581fa8..ee25134bfa 100644 --- a/src/lib/dns/util/sha1.cc +++ b/src/lib/dns/util/sha1.cc @@ -85,9 +85,9 @@ SHA1AddLength(SHA1Context *context, uint32_t length) { uint32_t addTemp = context->Length_Low; context->Length_Low += length; if (context->Length_Low < addTemp && ++context->Length_High == 0) { - return true; + return (true); } else { - return false; + return (false); } } |