From a1414a2c492bc11c6e7439380b95d9d400158024 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 20 Sep 2001 11:07:53 +0000 Subject: (add2all_hds): allow both "smbfs" and "smb" as fs type --- perl-install/fs.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 726f8041c..fcf933adf 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -88,7 +88,7 @@ sub add2all_hds { foreach (@l) { my $s = isNfs($_) ? 'nfss' : - isThisFs('smbfs', $_) ? 'smbs' : + isThisFs('smbfs', $_) || isThisFs('smb', $_) ? 'smbs' : 'special'; push @{$all_hds->{$s}}, $_; } -- cgit v1.2.1