forked from lix-project/lix
nix-prefetch-url: Fix regression in hash printing
This commit is contained in:
parent
7480f4f9a4
commit
af4689f9e9
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue