Fix copy-paste error: X509_V_ERR_CRL_SIGNATURE_FAILURE means that the
authortb <tb@openbsd.org>
Thu, 3 Feb 2022 18:05:31 +0000 (18:05 +0000)
committertb <tb@openbsd.org>
Thu, 3 Feb 2022 18:05:31 +0000 (18:05 +0000)
CRL's signature is invalid, not the certificate's.

lib/libcrypto/man/X509_STORE_CTX_get_error.3

index ef9ce4f..bf9a7e3 100644 (file)
@@ -1,4 +1,4 @@
-.\" $OpenBSD: X509_STORE_CTX_get_error.3,v 1.21 2022/01/24 17:39:59 tb Exp $
+.\" $OpenBSD: X509_STORE_CTX_get_error.3,v 1.22 2022/02/03 18:05:31 tb Exp $
 .\" full merge up to:
 .\" OpenSSL man3/X509_STORE_CTX_get_error 24a535ea Sep 22 13:14:20 2020 +0100
 .\" OpenSSL man3/X509_STORE_CTX_new 24a535ea Sep 22 13:14:20 2020 +0100
@@ -68,7 +68,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 .\" OF THE POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd $Mdocdate: January 24 2022 $
+.Dd $Mdocdate: February 3 2022 $
 .Dt X509_STORE_CTX_GET_ERROR 3
 .Os
 .Sh NAME
@@ -391,7 +391,7 @@ could not be read.
 .It Dv X509_V_ERR_CERT_SIGNATURE_FAILURE : No certificate signature failure
 The signature of the certificate is invalid.
 .It Dv X509_V_ERR_CRL_SIGNATURE_FAILURE : No CRL signature failure
-The signature of the certificate is invalid.
+The signature of the CRL is invalid.
 .It Dv X509_V_ERR_CERT_NOT_YET_VALID : No certificate is not yet valid
 The certificate is not yet valid: the notBefore date is after the
 current time.