diff options
author | tb <> | 2022-02-03 18:05:31 +0000 |
---|---|---|
committer | tb <> | 2022-02-03 18:05:31 +0000 |
commit | 04b3397873e6963a0b65396fa9aafb6fe3e7a1f3 (patch) | |
tree | 67b579e1cdd4fd6d89597bee381cdfe85f64c83a /src/lib | |
parent | 99e959b3452e5b44dc52e0e6e87b7e4ec42147af (diff) | |
download | openbsd-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.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/man/X509_STORE_CTX_get_error.3 | 6 |
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 |
392 | The signature of the certificate is invalid. | 392 | The 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 |
394 | The signature of the certificate is invalid. | 394 | The 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 |
396 | The certificate is not yet valid: the notBefore date is after the | 396 | The certificate is not yet valid: the notBefore date is after the |
397 | current time. | 397 | current time. |