Gerrit P. Haase [Thu, 14 Dec 2000 15:31:07 +0000 (16:31 +0100)]
Message-ID: <
3A38E7BB.13178.11C40A8@localhost>
p4raw-id: //depot/perl@8110
If you're planning on generating new filehandles, you could do this:
sub openit {
- my $name = shift;
+ my $path = shift;
local *FH;
return open (FH, $path) ? *FH : undef;
}