projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b19500
)
Cwd::fastcwd in File::Find
author
Michael Mahan
<mahanm@nextwork.rose-hulman.edu>
Wed, 4 Sep 1996 02:55:19 +0000
(
02:55
+0000)
committer
Andy Dougherty
<doughera@lafcol.lafayette.edu>
Wed, 4 Sep 1996 02:55:19 +0000
(
02:55
+0000)
Is there a good reason why File::Find uses Cwd::fastcwd instead of
Cwd:cwd when fastcwd isn't as portable?
[In particular, fastcwd() doesn't work on AFS.]
lib/File/Find.pm
patch
|
blob
|
history
diff --git
a/lib/File/Find.pm
b/lib/File/Find.pm
index 39fab7bcb9d33081f5cd090cb55be627ca7cd4ac..03ace14fd70a189b4ab7de08e23c4e46f890c8c1 100644
(file)
--- a/
lib/File/Find.pm
+++ b/
lib/File/Find.pm
@@
-70,7
+70,7
@@
that don't resolve:
sub find {
my $wanted = shift;
- my $cwd = Cwd::
fast
cwd();
+ my $cwd = Cwd::cwd();
my ($topdir,$topdev,$topino,$topmode,$topnlink);
foreach $topdir (@_) {
(($topdev,$topino,$topmode,$topnlink) = stat($topdir))