-*- coding: utf-8 -*-
Changes with Apache 2.5.0
+ *) core: fix a bug in <UnDefine ...> directive processing. When used, the last
+ <Define...>'ed variable was also withdrawn. PR 59019
+ [Christophe Jaillet]
+
*) mod_http2: limiting the amount of h2 workers a HTTP/2 connection can
occupy at a time to make DoS life harder. Limiting this to static 6 in
honor of http/1.1 connection limits, considering implementing dynamic
This does *not* limit the number of streams a client may open, rather the
number of server threads a connection might use.
[Stefan Eissing]
-
+
*) mod_auth_digest: Fix compatibility with expression-based Authname. PR59039.
[Eric Covener]
defines = (char **)ap_server_config_defines->elts;
for (i = 0; i < ap_server_config_defines->nelts; i++) {
if (strcmp(defines[i], name) == 0) {
- defines[i] = apr_array_pop(ap_server_config_defines);
+ defines[i] = *(char **)apr_array_pop(ap_server_config_defines);
break;
}
}