From 9acb0ccaa3abf69801224c55310a35a8dacfd8b4 Mon Sep 17 00:00:00 2001 From: Henrik Andersson Date: Wed, 30 Jan 2019 17:16:14 +0100 Subject: [PATCH] Dont use status bits not available in v3.2.0 --- utils.c | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/utils.c b/utils.c index 599514a..1544355 100644 --- a/utils.c +++ b/utils.c @@ -846,29 +846,6 @@ _utils_cert_get_status_report(gnutls_x509_crt_t cert, unsigned int status, strncat(out, buf, size); size -= strlen(buf); } - - if (status & GNUTLS_CERT_MISSING_OCSP_STATUS) { - snprintf(buf, sizeof(buf), - " %d. The certificate requires the server to send the certifiate\n" - " status, but no status was received.\n\n", i++); - strncat(out, buf, size); - size -= strlen(buf); - } - - if (status & GNUTLS_CERT_INVALID_OCSP_STATUS) { - snprintf(buf, sizeof(buf), - " %d. The received OCSP status response is invalid.\n\n", i++); - strncat(out, buf, size); - size -= strlen(buf); - } - - if (status & GNUTLS_CERT_UNKNOWN_CRIT_EXTENSIONS) { - snprintf(buf, sizeof(buf), - " %d. The certificate has extensions marked as critical which are\n" - " not supported.\n\n", i++); - strncat(out, buf, size); - size -= strlen(buf); - } } static int