From: Stefan Eissing Date: Fri, 16 Mar 2018 15:46:38 +0000 (+0000) Subject: Fixed OCSPEnable to keep accepting "off", not "none". X-Git-Tag: 2.5.0-alpha2-ci-test-only~2781 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=079cf5a7859f03096c1458d8c21e11f7e865ace2;p=thirdparty%2Fapache%2Fhttpd.git Fixed OCSPEnable to keep accepting "off", not "none". git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1827001 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_config.c b/modules/ssl/ssl_engine_config.c index 686a44aac5d..7501dc0d3a3 100644 --- a/modules/ssl/ssl_engine_config.c +++ b/modules/ssl/ssl_engine_config.c @@ -1972,7 +1972,7 @@ static const char *ssl_cmd_ocspcheck_parse(cmd_parms *parms, const char *w; w = ap_getword_conf(parms->temp_pool, &arg); - if (strcEQ(w, "none")) { + if (strcEQ(w, "off")) { *mask = SSL_OCSPCHECK_NONE; } else if (strcEQ(w, "leaf")) {