diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-07-28T12·56+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-07-28T12·56+0200 |
commit | af4689f9e9c846f8b8d902b05cabad88427d46b6 (patch) | |
tree | 3d446a0bf95682f738523413b850f7b8509e5be6 /src/libutil/hash.cc | |
parent | 7480f4f9a478d294eaa095c101df7c0543c1fd71 (diff) |
nix-prefetch-url: Fix regression in hash printing
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); } |