From 9837eb80d1289bb736859004e800521a40dfc6c6 Mon Sep 17 00:00:00 2001 From: Kenyon Ralph Date: Aug 04 2023 17:16:39 +0000 Subject: getcert: add-scep-ca: fix help for --ca-cert and --ra-cert The actual options are --ca-cert and --ra-cert, as defined in the popts struct. Signed-off-by: Kenyon Ralph --- diff --git a/src/getcert-add-scep-ca.1.in b/src/getcert-add-scep-ca.1.in index 901791e..6d0c9dc 100644 --- a/src/getcert-add-scep-ca.1.in +++ b/src/getcert-add-scep-ca.1.in @@ -25,7 +25,7 @@ passed in to \fIgetcert\fR's \fIrequest\fR, \fIresubmit\fR, and The location of the SCEP server's enrollment interface. This option must be specified. .TP -\fB\-R\fR \fIFILE\fR, \fB\-\-ca\-cacert\fR=\fIFILE\fR +\fB\-R\fR \fIFILE\fR, \fB\-\-ca\-cert\fR=\fIFILE\fR The location of a PEM\-formatted copy of the CA's certificate used to verify the TLS connection the SCEP server. diff --git a/src/getcert.c b/src/getcert.c index 7030d28..77fa536 100644 --- a/src/getcert.c +++ b/src/getcert.c @@ -5514,9 +5514,9 @@ help(const char *twopartcmd, const char *category) N_(" -c CA, --ca=NAME use the specified CA rather than the default\n"), N_(" -u URL, --URL URL location of SCEP server\n"), N_(" -i ID, --id ID CA identifier\n"), - N_(" -R FILE, --cacert=FILE\n"), + N_(" -R FILE, --ca-cert=FILE\n"), N_(" file containing web server's certificate\n"), - N_(" -r FILE, --racert=FILE\n"), + N_(" -r FILE, --ra-cert=FILE\n"), N_(" file containing RA's certificate\n"), N_(" -N FILE, --signingca=FILE\n"), N_(" file containing CA's certificate\n"),