From 3b1f9a938a3a319c0e11661bb0658b00bc51fbb3 Mon Sep 17 00:00:00 2001 From: Michael Insel Date: Fri, 14 Feb 2020 07:56:23 +0100 Subject: [PATCH] Fix Build I have no idea how this got lost. --- lib/cli/nodesetupcommand.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cli/nodesetupcommand.cpp b/lib/cli/nodesetupcommand.cpp index d02367ba4..eef67af47 100644 --- a/lib/cli/nodesetupcommand.cpp +++ b/lib/cli/nodesetupcommand.cpp @@ -376,7 +376,7 @@ int NodeSetupCommand::SetupNode(const boost::program_options::variables_map& vm, String trustedCert = vm["trustedcert"].as(); try{ - trustedParentCert = GetX509Certificate(trustedCert) + trustedParentCert = GetX509Certificate(trustedCert); } catch (const std::exception&) { Log(LogCritical, "cli") << "Can't read trusted cert at '" << trustedCert << "'.";