The prototype for lstat in File::stat is wrong. It stats that is expects
a GLOB. It should be expecting a scalar, the same as File::stat::stat.
p5p-msgid: <
199702180748.HAA14151@ultra-boy>
return $stob;
}
-sub lstat (*) { populate(CORE::lstat(shift)) }
+sub lstat ($) { populate(CORE::lstat(shift)) }
sub stat ($) {
my $arg = shift;