summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2022-02-03 18:05:31 +0000
committertb <>2022-02-03 18:05:31 +0000
commit04b3397873e6963a0b65396fa9aafb6fe3e7a1f3 (patch)
tree67b579e1cdd4fd6d89597bee381cdfe85f64c83a
parent99e959b3452e5b44dc52e0e6e87b7e4ec42147af (diff)
downloadopenbsd-04b3397873e6963a0b65396fa9aafb6fe3e7a1f3.tar.gz
openbsd-04b3397873e6963a0b65396fa9aafb6fe3e7a1f3.tar.bz2
openbsd-04b3397873e6963a0b65396fa9aafb6fe3e7a1f3.zip
Fix copy-paste error: X509_V_ERR_CRL_SIGNATURE_FAILURE means that the
CRL's signature is invalid, not the certificate's.
-rw-r--r--src/lib/libcrypto/man/X509_STORE_CTX_get_error.36
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/man/X509_STORE_CTX_get_error.3 b/src/lib/libcrypto/man/X509_STORE_CTX_get_error.3
index ef9ce4fe4b..bf9a7e31ff 100644
--- a/src/lib/libcrypto/man/X509_STORE_CTX_get_error.3
+++ b/src/lib/libcrypto/man/X509_STORE_CTX_get_error.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: X509_STORE_CTX_get_error.3,v 1.21 2022/01/24 17:39:59 tb Exp $ 1.\" $OpenBSD: X509_STORE_CTX_get_error.3,v 1.22 2022/02/03 18:05:31 tb Exp $
2.\" full merge up to: 2.\" full merge up to:
3.\" OpenSSL man3/X509_STORE_CTX_get_error 24a535ea Sep 22 13:14:20 2020 +0100 3.\" OpenSSL man3/X509_STORE_CTX_get_error 24a535ea Sep 22 13:14:20 2020 +0100
4.\" OpenSSL man3/X509_STORE_CTX_new 24a535ea Sep 22 13:14:20 2020 +0100 4.\" OpenSSL man3/X509_STORE_CTX_new 24a535ea Sep 22 13:14:20 2020 +0100
@@ -68,7 +68,7 @@
68.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 68.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
69.\" OF THE POSSIBILITY OF SUCH DAMAGE. 69.\" OF THE POSSIBILITY OF SUCH DAMAGE.
70.\" 70.\"
71.Dd $Mdocdate: January 24 2022 $ 71.Dd $Mdocdate: February 3 2022 $
72.Dt X509_STORE_CTX_GET_ERROR 3 72.Dt X509_STORE_CTX_GET_ERROR 3
73.Os 73.Os
74.Sh NAME 74.Sh NAME
@@ -391,7 +391,7 @@ could not be read.
391.It Dv X509_V_ERR_CERT_SIGNATURE_FAILURE : No certificate signature failure 391.It Dv X509_V_ERR_CERT_SIGNATURE_FAILURE : No certificate signature failure
392The signature of the certificate is invalid. 392The signature of the certificate is invalid.
393.It Dv X509_V_ERR_CRL_SIGNATURE_FAILURE : No CRL signature failure 393.It Dv X509_V_ERR_CRL_SIGNATURE_FAILURE : No CRL signature failure
394The signature of the certificate is invalid. 394The signature of the CRL is invalid.
395.It Dv X509_V_ERR_CERT_NOT_YET_VALID : No certificate is not yet valid 395.It Dv X509_V_ERR_CERT_NOT_YET_VALID : No certificate is not yet valid
396The certificate is not yet valid: the notBefore date is after the 396The certificate is not yet valid: the notBefore date is after the
397current time. 397current time.