From 53908b708088b93a49754815d77376b538678130 Mon Sep 17 00:00:00 2001 From: mcktr Date: Sun, 18 Jun 2017 15:13:16 +0200 Subject: [PATCH] Fixed missing closing bracket in CLI command pki new-cert. --- lib/cli/pkinewcertcommand.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cli/pkinewcertcommand.cpp b/lib/cli/pkinewcertcommand.cpp index b68bfa032..706c67d2d 100644 --- a/lib/cli/pkinewcertcommand.cpp +++ b/lib/cli/pkinewcertcommand.cpp @@ -41,7 +41,7 @@ void PKINewCertCommand::InitParameters(boost::program_options::options_descripti { visibleDesc.add_options() ("cn", po::value(), "Common Name") - ("key", po::value(), "Key file path (output") + ("key", po::value(), "Key file path (output)") ("csr", po::value(), "CSR file path (optional, output)") ("cert", po::value(), "Certificate file path (optional, output)"); }