From c036bfaa94dd31734976771cb592ca7c40937332 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Tue, 6 Dec 2016 11:22:24 +0100 Subject: [PATCH] Fix wrong help string in node setup CLI command fixes #13419 --- 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 80039e72ae8..e5f4e00d299 100644 --- a/lib/cli/nodesetupcommand.cpp +++ b/lib/cli/nodesetupcommand.cpp @@ -57,7 +57,7 @@ void NodeSetupCommand::InitParameters(boost::program_options::options_descriptio { visibleDesc.add_options() ("zone", po::value(), "The name of the local zone") - ("master_host", po::value(), "The name of the master host for auto-signing the csr") + ("master_host", po::value(), "The name of the master host for auto-signing the csr; syntax: host[,port]") ("endpoint", po::value >(), "Connect to remote endpoint; syntax: cn[,host,port]") ("listen", po::value(), "Listen on host,port") ("ticket", po::value(), "Generated ticket number for this request")