summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2017-06-19 20:27:24 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2017-06-19 20:28:21 +0200
commit50baadd492e6540d96bb31ccb3165f35e50d126d (patch)
tree93f6dbe5e227aeefe93367ff006d8f63eee7c1ce
parent77927aacb6a4e3d76d3fb388e67180c99cf9a287 (diff)
downloadgnutls-50baadd492e6540d96bb31ccb3165f35e50d126d.tar.gz
gnutls_certificate_verification_status_print: mention OCSP in error messages [ci skip]
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
-rw-r--r--lib/cert.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/cert.c b/lib/cert.c
index a1bcfee040..8bd2183f5b 100644
--- a/lib/cert.c
+++ b/lib/cert.c
@@ -979,12 +979,12 @@ gnutls_certificate_verification_status_print(unsigned int status,
if (status & GNUTLS_CERT_REVOCATION_DATA_SUPERSEDED)
_gnutls_buffer_append_str(&str,
_
- ("The revocation data are old and have been superseded. "));
+ ("The revocation or OCSP data are old and have been superseded. "));
if (status & GNUTLS_CERT_REVOCATION_DATA_ISSUED_IN_FUTURE)
_gnutls_buffer_append_str(&str,
_
- ("The revocation data are issued with a future date. "));
+ ("The revocation or OCSP data are issued with a future date. "));
if (status & GNUTLS_CERT_SIGNER_NOT_FOUND)
_gnutls_buffer_append_str(&str,