From 39a470088af6f833bd1a912908c44bf4a9f48b0c Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Fri, 3 Jun 2016 21:49:01 +0100 Subject: [PATCH] Fix documentation error in x509 app certopt flag According to the x509 man page in the section discussing -certopt it says that the ca_default option is the same as that used by the ca utility and (amongst other things) has the effect of suppressing printing of the signature - but in fact it doesn't. This error seems to have been present since the documentation was written back in 2001. It never had this effect. The default config file sets the certopt value to ca_default. The ca utility takes that and THEN adds additional options to suppress printing of the signature. So the ca utility DOES suppress printing of the signature - but it is not as a result of using the ca_default option. GitHub Issue #247 Reviewed-by: Rich Salz --- doc/apps/x509.pod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/apps/x509.pod b/doc/apps/x509.pod index 72ed6cff9c..4eb1a22687 100644 --- a/doc/apps/x509.pod +++ b/doc/apps/x509.pod @@ -655,8 +655,8 @@ hex dump unsupported extensions. =item B -the value used by the B utility, equivalent to B, B, B, -B, B and B. +the value used by the B utility, equivalent to B, B, +B, and B. =back -- 2.25.1