Sys::Filesystem is intended to be a portable interface to list and query filesystem names and their properties. At the time of writing there were only Solaris and Win32 modules available on CPAN to perform this kind of operation. This module hopes to provide a consistant API to list all, mounted, unmounted and special filesystems on a system, and query as many properties as possible with common aliases wherever possible. WWW: http://search.cpan.org/dist/Sys-Filesystem/ PR: ports/98307 Submitted by: pirzyk
12 lines
313 B
Perl
12 lines
313 B
Perl
--- lib/Sys/Filesystem.pm.orig Fri May 26 12:06:39 2006
|
|
+++ lib/Sys/Filesystem.pm Fri May 26 12:06:40 2006
|
|
@@ -108,7 +108,7 @@
|
|
# Invert logic for regular
|
|
if (exists $params->{regular}) {
|
|
delete $params->{regular};
|
|
- $params->{regular} = undef;
|
|
+ $params->{special} = undef;
|
|
}
|
|
|
|
my @filesystems = ();
|