coar        2004/04/09 15:22:47

  Modified:    perl-framework/Apache-Test Changes
               perl-framework/Apache-Test/lib/Apache TestConfig.pm
  Log:
  bah, missing value for $vars->{apxs} (a reasonable condition) threw an 
"uninitialised value" message
  
  Revision  Changes    Path
  1.120     +5 -1      httpd-test/perl-framework/Apache-Test/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/Changes,v
  retrieving revision 1.119
  retrieving revision 1.120
  diff -u -u -r1.119 -r1.120
  --- Changes   7 Apr 2004 22:11:58 -0000       1.119
  +++ Changes   9 Apr 2004 22:22:47 -0000       1.120
  @@ -8,11 +8,15 @@
   
   =item 1.10-dev
   
  +Fixed a Windows-only segment which would result in a
  +'use of uninitialised value' error if a hash being traversed
  +had an entry with a key but an undefined value.  [Ken]
  +
   Support continuous configuration line when parsing the inherited
   configuration file [Stas]
   
   Since some of the inherited from the global httpd.conf modules require
  -mod_perl to be loaded first, orrange for that to happen. [Stas]
  +mod_perl to be loaded first, arrange for that to happen. [Stas]
   
   Don't try to set ulimit unlimited for coredumps on Solaris, unless run
   as root [Rob Kinyon <[EMAIL PROTECTED]>]
  
  
  
  1.220     +1 -1      
httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm
  
  Index: TestConfig.pm
  ===================================================================
  RCS file: 
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm,v
  retrieving revision 1.219
  retrieving revision 1.220
  diff -u -u -r1.219 -r1.220
  --- TestConfig.pm     7 Apr 2004 21:51:36 -0000       1.219
  +++ TestConfig.pm     9 Apr 2004 22:22:47 -0000       1.220
  @@ -266,7 +266,7 @@
   
       if (WINFU) {
           for (keys %$vars) {
  -            $vars->{$_} =~ s|\\|\/|g;
  +            $vars->{$_} =~ s|\\|\/|g if defined $vars->{$_};
           }
       }
   
  
  
  

Reply via email to