diff options
Diffstat (limited to 'src/libutil/hash.cc')
-rw-r--r-- | src/libutil/hash.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/hash.cc b/src/libutil/hash.cc index 817ddc0b8bc9..e16c3b6ea93f 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); } |