Avoid useless warning message when parsing a section guarded by <IfDefine foo> if $(foo) is used within the section.
PR 56503
Submitted by: jailletc36
Reviewed/backported by: jim
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@
1621603 13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.4.11
+ *) core: Avoid useless warning message when parsing a section guarded by
+ <IfDefine foo> if $(foo) is used within the section.
+ PR 56858 [Christophe Jaillet]
+
*) mod_proxy_fcgi: Fix faulty logging of large amounts of stderr from the
application. PR 56858. [Manuel Mausz <manuel-asf mausz.at>]
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- * core: Avoid useless warning message when parsing a section guarded by
- <IfDefine foo> if $(foo) is used within the section. PR56503
- trunk patch: http://svn.apache.org/r1618541
- 2.4.x patch: trunk patch works (modulo CHANGES)
- +1: jailletc36, ylavic, covener
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
[ New proposals should be added at the end of the list ]
while((rc = ap_varbuf_cfg_getline(&vb, cmd->config_file, max_len))
== APR_SUCCESS) {
-#if RESOLVE_ENV_PER_TOKEN
args = vb.buf;
-#else
- args = ap_resolve_env(cmd->temp_pool, vb.buf);
-#endif
cmd_name = ap_getword_conf(cmd->temp_pool, &args);
if (cmd_name[0] == '<') {