Subject: | "uninitialized" warning from parse() |
Hi,
This looks like a thinko to me. Here's the patch:
--- Config/Auto.pm.orig Thu Sep 9 03:24:50 2004
+++ Config/Auto.pm Thu Sep 9 03:25:16 2004
@@ -32,7 +32,7 @@
my $file = shift;
my %args = @_;
- $file = find_file($file) if not defined $file and
+ $file = find_file($file) if not defined $file or
not -e $file;
croak "No config file found!" if not defined $file;
croak "Config file $file not readable!" if not -e $file;
hth,
Abe