aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/libutil/hash.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/hash.cc b/src/libutil/hash.cc
index 817ddc0b8..e16c3b6ea 100644
--- a/src/libutil/hash.cc
+++ b/src/libutil/hash.cc
@@ -98,7 +98,7 @@ static string printHash32(const Hash & hash)
string printHash16or32(const Hash & hash)
{
- return hash.to_string(hash.type == htMD5 ? Base16 : Base32);
+ return hash.to_string(hash.type == htMD5 ? Base16 : Base32, false);
}