The following patch eliminates a warning during 'make test' about 'Value
of <HANDLE> construct can be "0";'. No biggie, but it should be fixed.
________________________________________________________________
--- t/modules/request.t 2000/05/12 03:43:24 1.8
+++ t/modules/request.t 2000/08/24 06:07:40
@@ -125,7 +125,7 @@
my $lines = 0;
local *FH;
open FH, $file or die "open $file $!";
- ++$lines while (my $dummy = <FH>);
+ ++$lines while <FH>;
close FH;
my(@headers);
if ($Is_dougm) {
________________________________________________________________
Also: this test tests Apache::Request, but it's only run if the current
user is 'dougm'. Is it time to let this test out of the cat-bag? =)