From: Jeff Trawick Date: Fri, 14 May 2010 18:44:48 +0000 (+0000) Subject: apxs -q: Stop filtering out ':' characters from the reported values. X-Git-Tag: 2.3.6~121 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=05f09e8db87c04a712cdb15ba88df3e48b6d684a;p=apache apxs -q: Stop filtering out ':' characters from the reported values. PR: 45343 Submitted by: Bill Cole git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@944383 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 1ed3a85b1c..30c893abff 100644 --- a/CHANGES +++ b/CHANGES @@ -28,6 +28,9 @@ Changes with Apache 2.3.7 processing is completed, avoiding orphaned callback pointers. [Brett Gervasoni , 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] diff --git a/support/apxs.in b/support/apxs.in index c44875cd20..beb683ed58 100644 --- a/support/apxs.in +++ b/support/apxs.in @@ -236,7 +236,6 @@ sub get_vars { } } $result =~ s|;;$||; - $result =~ s|:| |; return $result; }