From 698a0067c98b8b5e0e5d4b4a4a1c759cd9f2482c Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 11 Aug 2019 10:44:29 +0300 Subject: [PATCH] Fix check_crl_strict documentation The OpenSSL error codes used here were for certificates, not CRLs. Fix that to refer to CRL being expired or not yet valid. Signed-off-by: Jouni Malinen --- hostapd/hostapd.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hostapd/hostapd.conf b/hostapd/hostapd.conf index ce3ecdddf..a69174af1 100644 --- a/hostapd/hostapd.conf +++ b/hostapd/hostapd.conf @@ -1012,7 +1012,7 @@ eap_server=0 #check_crl=1 # Specify whether to ignore certificate CRL validity time mismatches with -# errors X509_V_ERR_CERT_HAS_EXPIRED and X509_V_ERR_CERT_NOT_YET_VALID. +# errors X509_V_ERR_CRL_HAS_EXPIRED and X509_V_ERR_CRL_NOT_YET_VALID. # # 0 = ignore errors # 1 = do not ignore errors (default)