You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fu...@apache.org on 2007/12/19 22:25:53 UTC

svn commit: r605709 - /httpd/mod_ftp/trunk/build/mkconfNW.awk

Author: fuankg
Date: Wed Dec 19 13:25:52 2007
New Revision: 605709

URL: http://svn.apache.org/viewvc?rev=605709&view=rev
Log:
fixed regex to detect SSLMutex.

Modified:
    httpd/mod_ftp/trunk/build/mkconfNW.awk

Modified: httpd/mod_ftp/trunk/build/mkconfNW.awk
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/build/mkconfNW.awk?rev=605709&r1=605708&r2=605709&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/build/mkconfNW.awk (original)
+++ httpd/mod_ftp/trunk/build/mkconfNW.awk Wed Dec 19 13:25:52 2007
@@ -40,7 +40,7 @@
     sub(/^SSLSessionCache/, "#SSLSessionCache")
 }
 
-match ($0,/^SSLMutex +"file:@exp_runtimedir@\/ssl_mutex"/) {
+match ($0,/SSLMutex +"file:@exp_runtimedir@\/ssl_mutex"/) {
     sub(/"file:@exp_runtimedir@\/ssl_mutex"/, "default")
 }