From 3979ec9b153699289d0832643f38fa14d0870d29 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 ed0126ce8..cf185b335 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.50.1