]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Make sure support/check_forensic works with mod_unique_id loaded too.
authorIgor Galić <igalic@apache.org>
Tue, 26 Apr 2011 15:10:00 +0000 (15:10 +0000)
committerIgor Galić <igalic@apache.org>
Tue, 26 Apr 2011 15:10:00 +0000 (15:10 +0000)
Author: Joes Shaefer

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

CHANGES
support/check_forensic

diff --git a/CHANGES b/CHANGES
index eb91935228b3dde298bd3ed70a7fe44dff3734e4..354d4cd312822463174c4effcb03a4aa5f2738b7 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,9 @@
 
 Changes with Apache 2.3.12
 
+  *) support: Make sure check_forensic works with mod_unique_id loaded
+     [Joe Schaefer]
+
   *) Add child_status hook for tracking creation/termination of MPM child
      processes.  Add end_generation hook for notification when the last
      MPM child of a generation exits. [Jeff Trawick]
index 3c8123fcbb734cdabe712614d8fc474f8b32a00d..d7a3f785537ca84706a8123fc00d71e5574727c3 100755 (executable)
@@ -43,8 +43,8 @@ out=$name
 trap "rm -f -- \"$all\" \"$in\" \"$out\";" 0 1 2 3 13 15
 
 cut -f 1 -d '|' $F  > $all
-grep + < $all | cut -c2- | sort > $in
-grep -- - < $all | cut -c2- | sort > $out
+grep ^+ < $all | cut -c2- | sort > $in
+grep -- ^- < $all | cut -c2- | sort > $out
 
 # use -i instead of -I for GNU xargs
 join -v 1 $in $out | xargs -I xx egrep "^\\+xx" $F