From 272d9541beb3c1c24a15cd6a0a443fbf4950ed3d Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Tue, 23 Feb 2016 16:55:45 +0100 Subject: [PATCH] Fix wrong log message in 'node setup' cli command fixes #11209 --- lib/cli/nodesetupcommand.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/cli/nodesetupcommand.cpp b/lib/cli/nodesetupcommand.cpp index a86d02293..33d917723 100644 --- a/lib/cli/nodesetupcommand.cpp +++ b/lib/cli/nodesetupcommand.cpp @@ -293,10 +293,9 @@ int NodeSetupCommand::SetupNode(const boost::program_options::variables_map& vm, boost::shared_ptr trustedcert = GetX509Certificate(vm["trustedcert"].as()); Log(LogInformation, "cli") - << "Verifying trusted certificate from file '" << trustedcert << "'."; + << "Verifying trusted certificate file '" << vm["trustedcert"].as() << "'."; /* retrieve CN and pass it (defaults to FQDN) */ - String cn = Utility::GetFQDN(); if (vm.count("cn")) -- 2.40.0