You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-commits@perl.apache.org by st...@apache.org on 2005/08/17 22:24:26 UTC

svn commit: r233258 - in /perl/Apache-Test/trunk: Changes lib/Apache/TestConfig.pm

Author: stas
Date: Wed Aug 17 13:24:24 2005
New Revision: 233258

URL: http://svn.apache.org/viewcvs?rev=233258&view=rev
Log:
some people have their Apache user/group names include spaces, so fix
the autogenerated httpd.conf to quote the two.

Modified:
    perl/Apache-Test/trunk/Changes
    perl/Apache-Test/trunk/lib/Apache/TestConfig.pm

Modified: perl/Apache-Test/trunk/Changes
URL: http://svn.apache.org/viewcvs/perl/Apache-Test/trunk/Changes?rev=233258&r1=233257&r2=233258&view=diff
==============================================================================
--- perl/Apache-Test/trunk/Changes (original)
+++ perl/Apache-Test/trunk/Changes Wed Aug 17 13:24:24 2005
@@ -12,6 +12,9 @@
 
 =item 1.26 - July 25, 2005
 
+some people have their Apache user/group names include spaces, so fix
+the autogenerated httpd.conf to quote the two. [Stas]
+
 make sure mp2 loading doesn't make it impossible to complete
 mp1 runs.  [Matt Sergeant, Geoffrey Young]
 

Modified: perl/Apache-Test/trunk/lib/Apache/TestConfig.pm
URL: http://svn.apache.org/viewcvs/perl/Apache-Test/trunk/lib/Apache/TestConfig.pm?rev=233258&r1=233257&r2=233258&view=diff
==============================================================================
--- perl/Apache-Test/trunk/lib/Apache/TestConfig.pm (original)
+++ perl/Apache-Test/trunk/lib/Apache/TestConfig.pm Wed Aug 17 13:24:24 2005
@@ -1549,7 +1549,7 @@
 
     for my $name (qw(user group)) { #win32/cygwin do not support
         if ($vars->{$name}) {
-            print $out "\u$name    $vars->{$name}\n";
+            print $out qq[\u$name    "$vars->{$name}"\n];
         }
     }