aboutsummaryrefslogtreecommitdiff
path: root/src/nix
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-08-05 14:37:42 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-08-05 14:40:01 +0000
commit839f0fe0956cf4434b64e81a0966e780051901ad (patch)
treed7413e1f0bf42a42bfb83490e0e462b6dc8b6066 /src/nix
parent03f4fafc27bd9f8def1df6a229a17fc2c3f0e0a0 (diff)
parentb91dc7ebad733f557dd812f285095b700c267fa2 (diff)
Merge remote-tracking branch 'upstream/master' into misc-ca
Diffstat (limited to 'src/nix')
-rw-r--r--src/nix/hash.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/hash.cc b/src/nix/hash.cc
index b94751e45..0eca4f8ea 100644
--- a/src/nix/hash.cc
+++ b/src/nix/hash.cc
@@ -107,7 +107,7 @@ struct CmdToBase : Command
void run() override
{
for (auto s : args)
- logger->stdout(Hash(s, ht).to_string(base, base == SRI));
+ logger->stdout(Hash::parseAny(s, ht).to_string(base, base == SRI));
}
};