diff options
-rw-r--r-- | src/lib/libcrypto/x509/x509_txt.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/x509_txt.c b/src/lib/libcrypto/x509/x509_txt.c index 58c0566686..2a4e49df10 100644 --- a/src/lib/libcrypto/x509/x509_txt.c +++ b/src/lib/libcrypto/x509/x509_txt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_txt.c,v 1.23 2022/11/29 07:06:12 tb Exp $ */ | 1 | /* $OpenBSD: x509_txt.c,v 1.24 2022/11/29 07:08:41 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -73,6 +73,8 @@ X509_verify_cert_error_string(long n) | |||
73 | switch ((int)n) { | 73 | switch ((int)n) { |
74 | case X509_V_OK: | 74 | case X509_V_OK: |
75 | return "ok"; | 75 | return "ok"; |
76 | case X509_V_ERR_UNSPECIFIED: | ||
77 | return "Unspecified certificate verification error"; | ||
76 | case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT: | 78 | case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT: |
77 | return "unable to get issuer certificate"; | 79 | return "unable to get issuer certificate"; |
78 | case X509_V_ERR_UNABLE_TO_GET_CRL: | 80 | case X509_V_ERR_UNABLE_TO_GET_CRL: |