diff options
author | schwarze <> | 2019-08-25 15:39:10 +0000 |
---|---|---|
committer | schwarze <> | 2019-08-25 15:39:10 +0000 |
commit | eccc4884be142bee5501102fc3155e4ac5c90750 (patch) | |
tree | 836ab7fbaa0a7c6cf57acf4921314fd31051116d /src | |
parent | d48e88c24d5ed4efedc8f4135b6b1e2340879b6f (diff) | |
download | openbsd-eccc4884be142bee5501102fc3155e4ac5c90750.tar.gz openbsd-eccc4884be142bee5501102fc3155e4ac5c90750.tar.bz2 openbsd-eccc4884be142bee5501102fc3155e4ac5c90750.zip |
fix reversed meaning of error codes;
from Martin Ukrop <mukrop at mail dot muni dot cz>
via OpenSSL commit bb00b040 Aug 5 14:14:54 2019 +0200
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/man/X509_STORE_CTX_get_error.3 | 14 |
1 files changed, 7 insertions, 7 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 f2e204fa7e..181c676b58 100644 --- a/src/lib/libcrypto/man/X509_STORE_CTX_get_error.3 +++ b/src/lib/libcrypto/man/X509_STORE_CTX_get_error.3 | |||
@@ -1,8 +1,8 @@ | |||
1 | .\" $OpenBSD: X509_STORE_CTX_get_error.3,v 1.12 2019/06/04 12:31:29 schwarze Exp $ | 1 | .\" $OpenBSD: X509_STORE_CTX_get_error.3,v 1.13 2019/08/25 15:39:10 schwarze Exp $ |
2 | .\" full merge up to: | 2 | .\" full merge up to: |
3 | .\" OpenSSL crypto/X509_STORE_CTX_get_error f0e0fd51 Apr 14 23:59:26 2016 -0400 | 3 | .\" OpenSSL crypto/X509_STORE_CTX_get_error f0e0fd51 Apr 14 23:59:26 2016 -0400 |
4 | .\" selective merge up to: | 4 | .\" selective merge up to: |
5 | .\" OpenSSL man3/X509_STORE_CTX_get_error 2947af32 Nov 19 00:10:05 2016 +0100 | 5 | .\" OpenSSL man3/X509_STORE_CTX_get_error bb00b040 Aug 5 14:14:54 2019 +0200 |
6 | .\" OpenSSL man3/X509_STORE_CTX_new 7643a172 Apr 21 13:35:51 2017 +0200 | 6 | .\" OpenSSL man3/X509_STORE_CTX_new 7643a172 Apr 21 13:35:51 2017 +0200 |
7 | .\" | 7 | .\" |
8 | .\" This file was written by Dr. Stephen Henson <steve@openssl.org>. | 8 | .\" This file was written by Dr. Stephen Henson <steve@openssl.org>. |
@@ -53,7 +53,7 @@ | |||
53 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 53 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
54 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 54 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
55 | .\" | 55 | .\" |
56 | .Dd $Mdocdate: June 4 2019 $ | 56 | .Dd $Mdocdate: August 25 2019 $ |
57 | .Dt X509_STORE_CTX_GET_ERROR 3 | 57 | .Dt X509_STORE_CTX_GET_ERROR 3 |
58 | .Os | 58 | .Os |
59 | .Sh NAME | 59 | .Sh NAME |
@@ -210,8 +210,8 @@ these are described as "unused". | |||
210 | The operation was successful. | 210 | The operation was successful. |
211 | .It Dv X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT : \ | 211 | .It Dv X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT : \ |
212 | No unable to get issuer certificate | 212 | No unable to get issuer certificate |
213 | The issuer certificate could not be found: this occurs if the issuer | 213 | The issuer certificate of a locally looked up certificate could not be found. |
214 | certificate of an untrusted certificate cannot be found. | 214 | This normally means the list of trusted certificates is not complete. |
215 | .It Dv X509_V_ERR_UNABLE_TO_GET_CRL : No unable to get certificate CRL | 215 | .It Dv X509_V_ERR_UNABLE_TO_GET_CRL : No unable to get certificate CRL |
216 | The CRL of a certificate could not be found. | 216 | The CRL of a certificate could not be found. |
217 | .It Dv X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE : \ | 217 | .It Dv X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE : \ |
@@ -269,8 +269,8 @@ The certificate chain could be built up using the untrusted certificates | |||
269 | but the root could not be found locally. | 269 | but the root could not be found locally. |
270 | .It Dv X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY : \ | 270 | .It Dv X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY : \ |
271 | No unable to get local issuer certificate | 271 | No unable to get local issuer certificate |
272 | The issuer certificate of a locally looked up certificate could not be found. | 272 | The issuer certificate could not be found: this occurs if the issuer |
273 | This normally means the list of trusted certificates is not complete. | 273 | certificate of an untrusted certificate cannot be found. |
274 | .It Dv X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE : \ | 274 | .It Dv X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE : \ |
275 | No unable to verify the first certificate | 275 | No unable to verify the first certificate |
276 | No signatures could be verified because the chain contains only one | 276 | No signatures could be verified because the chain contains only one |