Return-Path: Delivered-To: apmail-httpd-test-cvs-archive@www.apache.org Received: (qmail 73428 invoked from network); 9 Apr 2004 22:22:49 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 9 Apr 2004 22:22:49 -0000 Received: (qmail 99469 invoked by uid 500); 9 Apr 2004 22:22:35 -0000 Delivered-To: apmail-httpd-test-cvs-archive@httpd.apache.org Received: (qmail 99411 invoked by uid 500); 9 Apr 2004 22:22:34 -0000 Mailing-List: contact test-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-cvs@httpd.apache.org Received: (qmail 99398 invoked from network); 9 Apr 2004 22:22:34 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 9 Apr 2004 22:22:34 -0000 Received: (qmail 73383 invoked by uid 1085); 9 Apr 2004 22:22:47 -0000 Date: 9 Apr 2004 22:22:47 -0000 Message-ID: <20040409222247.73382.qmail@minotaur.apache.org> From: coar@apache.org To: httpd-test-cvs@apache.org Subject: cvs commit: httpd-test/perl-framework/Apache-Test/lib/Apache TestConfig.pm X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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 ] 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->{$_}; } }