diff options
author | Ben Morrow <ben@morrow.me.uk> | 2009-01-20 01:37:31 +0000 |
---|---|---|
committer | Ben Morrow <ben@morrow.me.uk> | 2009-03-25 21:14:06 +0000 |
commit | 709edd5bfab4664ea90ed1988a3465afffc3420b (patch) | |
tree | ee03b16a1328253927ef1c90d2649ef950236704 /lib/File | |
parent | 7fb13887d71713a7821f3417b415917a61fdcf6c (diff) | |
download | perl-709edd5bfab4664ea90ed1988a3465afffc3420b.tar.gz |
I missed a s/stat_cando/cando/ in File::stat.
Diffstat (limited to 'lib/File')
-rw-r--r-- | lib/File/stat.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/File/stat.pm b/lib/File/stat.pm index 74896053e5..d0098baf13 100644 --- a/lib/File/stat.pm +++ b/lib/File/stat.pm @@ -73,7 +73,7 @@ sub _ingroup { if (grep $^O eq $_, qw/os2 MSWin32 dos/) { # from doio.c - *stat_cando = sub { ($_[0] & $_[2]->mode) ? 1 : "" }; + *cando = sub { ($_[0] & $_[2]->mode) ? 1 : "" }; } else { |