diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-20 11:07:53 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-20 11:07:53 +0000 |
commit | a1414a2c492bc11c6e7439380b95d9d400158024 (patch) | |
tree | 8d9047a060abef0178dd02dfea0a3ac3833dc25c | |
parent | 73c8f7bacfa1e62be7b275cb8593f287796a9529 (diff) | |
download | drakx-a1414a2c492bc11c6e7439380b95d9d400158024.tar drakx-a1414a2c492bc11c6e7439380b95d9d400158024.tar.gz drakx-a1414a2c492bc11c6e7439380b95d9d400158024.tar.bz2 drakx-a1414a2c492bc11c6e7439380b95d9d400158024.tar.xz drakx-a1414a2c492bc11c6e7439380b95d9d400158024.zip |
(add2all_hds): allow both "smbfs" and "smb" as fs type
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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}}, $_; } |