]> granicus.if.org Git - apache/commitdiff
Fixed OCSPEnable to keep accepting "off", not "none".
authorStefan Eissing <icing@apache.org>
Fri, 16 Mar 2018 15:46:38 +0000 (15:46 +0000)
committerStefan Eissing <icing@apache.org>
Fri, 16 Mar 2018 15:46:38 +0000 (15:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1827001 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_config.c

index 686a44aac5d06fa86176a293e76d1e9edfc498b6..7501dc0d3a310c09343296cb9a8cc9f67e55d3e2 100644 (file)
@@ -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")) {