1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-29 06:21:14 +02:00

Add Hash::dummy to signal default value

We did this in the same spirit of the dummy value that's present in
libstore/path.hh
This commit is contained in:
Carlo Nucera 2020-08-05 15:11:49 -04:00
parent 1d71028f4d
commit 1ad6394b33
4 changed files with 7 additions and 3 deletions

View file

@ -113,7 +113,7 @@ struct LegacySSHStore : public Store
if (GET_PROTOCOL_MINOR(conn->remoteVersion) >= 4) {
auto s = readString(conn->from);
info->narHash = s.empty() ? Hash(htSHA256) : Hash::parseAnyPrefixed(s);
info->narHash = s.empty() ? Hash::dummy : Hash::parseAnyPrefixed(s);
info->ca = parseContentAddressOpt(readString(conn->from));
info->sigs = readStrings<StringSet>(conn->from);
}