]> granicus.if.org Git - apache/commitdiff
apxs -q: Stop filtering out ':' characters from the reported values.
authorJeff Trawick <trawick@apache.org>
Fri, 14 May 2010 18:44:48 +0000 (18:44 +0000)
committerJeff Trawick <trawick@apache.org>
Fri, 14 May 2010 18:44:48 +0000 (18:44 +0000)
PR: 45343
Submitted by: Bill Cole <apachebugz-20090909 billmail.scconsult.com>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@944383 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
support/apxs.in

diff --git a/CHANGES b/CHANGES
index 1ed3a85b1c5673b5db8f57b8ca4889af7d9c6bf8..30c893abff172e871c5d4a874e6e8d565d47acb9 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -28,6 +28,9 @@ Changes with Apache 2.3.7
      processing is completed, avoiding orphaned callback pointers.
      [Brett Gervasoni <brettg senseofsecurity.com>, Jeff Trawick]
 
+  *) apxs -q: Stop filtering out ':' characters from the reported values.
+     PR 45343.  [Bill Cole]
+
   *) prefork MPM: Run cleanups for final request when process exits gracefully.
      PR 43857.  [Tom Donovan]
 
index c44875cd201f0dd97c44d0df2016596af94deead..beb683ed58220cb13336018d178948032cdee359 100644 (file)
@@ -236,7 +236,6 @@ sub get_vars {
         }
     }
     $result =~ s|;;$||;
-    $result =~ s|:| |;
     return $result;
 }