Merge pull request #1420 from NixOS/nix-2.23

`sshPublicHostKey` fix for `master`
This commit is contained in:
John Ericson
2024-10-24 17:03:20 +02:00
committed by GitHub

View File

@ -171,7 +171,7 @@ void State::parseMachines(const std::string & contents)
std::move(mandatoryFeatures),
// `sshPublicHostKey`
tokens[7] != "" && tokens[7] != "-"
? base64Decode(tokens[7])
? tokens[7]
: "",
});