Skip to content
Snippets Groups Projects
Unverified Commit af4689f9 authored by Eelco Dolstra's avatar Eelco Dolstra
Browse files

nix-prefetch-url: Fix regression in hash printing

parent 7480f4f9
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment