diff options
author | Jeff Trawick <trawick@apache.org> | 2009-11-24 02:52:13 +0100 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2009-11-24 02:52:13 +0100 |
commit | 8b224c767f54252a10b4004615038efa1d22a423 (patch) | |
tree | edb28eb42a6037668cdcace36234879c45e83de6 | |
parent | Replace AcceptMutex, LockFile, RewriteLock, SSLMutex, SSLStaplingMutex, (diff) | |
download | apache2-8b224c767f54252a10b4004615038efa1d22a423.tar.xz apache2-8b224c767f54252a10b4004615038efa1d22a423.zip |
fix recognition of the Mutex directive (problem in r883540)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@883572 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | build/mkconfNW.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/mkconfNW.awk b/build/mkconfNW.awk index 8b79d1dc7c..2eee7fe720 100644 --- a/build/mkconfNW.awk +++ b/build/mkconfNW.awk @@ -100,8 +100,8 @@ match ($0,/^SSLSessionCache +"shmcb:/) { sub(/^SSLSessionCache/, "#SSLSessionCache") } -match ($0,/^Mutex +"file:@rel_runtimedir@"/) { - sub(/"file:@rel_runtimedir@"/, "default") +match ($0,/^# Mutex +default +file:@rel_runtimedir@/) { + sub(/file:@rel_runtimedir@/, "default") } match ($0,/@@.*@@/) { |