]> granicus.if.org Git - apache/commitdiff
Merge r1618541 from trunk:
authorJim Jagielski <jim@apache.org>
Sun, 31 Aug 2014 16:09:08 +0000 (16:09 +0000)
committerJim Jagielski <jim@apache.org>
Sun, 31 Aug 2014 16:09:08 +0000 (16:09 +0000)
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
STATUS
server/config.c

diff --git a/CHANGES b/CHANGES
index 60a0e222d163e88a8353b5e91577b83b22a165ff..d39bbdd8f20a424738ca3c249c32959f97ffd177 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,10 @@
 
 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>]
 
diff --git a/STATUS b/STATUS
index 0394c3e59139804afbc460f2c8f27563b45ba18a..07fe29708566a08af4766b0c906ee4e998786d85 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -101,11 +101,6 @@ RELEASE SHOWSTOPPERS:
 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 ]
index 996135858f63674ed34f8cf9571d2b672bb2cab0..dada063c0624319a6fa26033241cabfb6fb8bb40 100644 (file)
@@ -1607,11 +1607,7 @@ AP_DECLARE(const char *) ap_soak_end_container(cmd_parms *cmd, char *directive)
 
     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] == '<') {