Loading CHANGES +4 −0 Original line number Diff line number Diff line Loading @@ -2,6 +2,10 @@ Changes with Apache 2.4.19 *) core: fix a bug in <UnDefine ...> directive processing. When used, the last <Define...>'ed variable was also withdrawn. PR 59019 [Christophe Jaillet] *) mod_http2: Accept-Encoding is, when present on the initiating request, added to push promises. This lets compressed content work in pushes. by the client. [Stefan Eissing] Loading STATUS +0 −8 Original line number Diff line number Diff line Loading @@ -112,14 +112,6 @@ RELEASE SHOWSTOPPERS: PATCHES ACCEPTED TO BACKPORT FROM TRUNK: [ start all new proposals below, under PATCHES PROPOSED. ] *) core: Fix a bug in <UnDefine ...> directive processing. When used, the last <Define...>'ed variable was also withdrawn. PR 59019 Trunk patch: http://svn.apache.org/r1732716 2.4.x patch: Trunk version of patch works (modulo CHNAGES) +1: jailletc36, ylavic, icing *) Save a few bytes in conf pool when parsing some directives Trunk patch: http://svn.apache.org/r1732252 Loading server/core.c +1 −1 Original line number Diff line number Diff line Loading @@ -1362,7 +1362,7 @@ static const char *unset_define(cmd_parms *cmd, void *dummy, 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; } } Loading Loading
CHANGES +4 −0 Original line number Diff line number Diff line Loading @@ -2,6 +2,10 @@ Changes with Apache 2.4.19 *) core: fix a bug in <UnDefine ...> directive processing. When used, the last <Define...>'ed variable was also withdrawn. PR 59019 [Christophe Jaillet] *) mod_http2: Accept-Encoding is, when present on the initiating request, added to push promises. This lets compressed content work in pushes. by the client. [Stefan Eissing] Loading
STATUS +0 −8 Original line number Diff line number Diff line Loading @@ -112,14 +112,6 @@ RELEASE SHOWSTOPPERS: PATCHES ACCEPTED TO BACKPORT FROM TRUNK: [ start all new proposals below, under PATCHES PROPOSED. ] *) core: Fix a bug in <UnDefine ...> directive processing. When used, the last <Define...>'ed variable was also withdrawn. PR 59019 Trunk patch: http://svn.apache.org/r1732716 2.4.x patch: Trunk version of patch works (modulo CHNAGES) +1: jailletc36, ylavic, icing *) Save a few bytes in conf pool when parsing some directives Trunk patch: http://svn.apache.org/r1732252 Loading
server/core.c +1 −1 Original line number Diff line number Diff line Loading @@ -1362,7 +1362,7 @@ static const char *unset_define(cmd_parms *cmd, void *dummy, 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; } } Loading