From 29a4a42f17dbddea0bdcd9d9ea06f864279714be Mon Sep 17 00:00:00 2001 From: Kyle Havlovitz Date: Tue, 18 Apr 2017 16:30:20 -0700 Subject: [PATCH] Fix help text on client cert/key options --- command/base/command.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/command/base/command.go b/command/base/command.go index 3bd46e1a33..46103e3fe3 100644 --- a/command/base/command.go +++ b/command/base/command.go @@ -101,10 +101,10 @@ func (c *Command) httpFlagsClient(f *flag.FlagSet) *flag.FlagSet { "Path to a directory of CA certificates to use for TLS when communicating "+ "with Consul. This can also be specified via the CONSUL_CAPATH environment variable.") f.Var(&c.certFile, "client-cert", - "Path to a client cert file to use for TLS when `verify_incoming` is enabled. This "+ + "Path to a client cert file to use for TLS when 'verify_incoming' is enabled. This "+ "can also be specified via the CONSUL_CLIENT_CERT environment variable.") f.Var(&c.keyFile, "client-key", - "Path to a client key file to use for TLS when `verify_incoming` is enabled. This "+ + "Path to a client key file to use for TLS when 'verify_incoming' is enabled. This "+ "can also be specified via the CONSUL_CLIENT_KEY environment variable.") f.Var(&c.httpAddr, "http-addr", "The `address` and port of the Consul HTTP agent. The value can be an IP "+