summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>1999-10-09 12:46:28 +0000
committerPascal Rigaux <pixel@mandriva.com>1999-10-09 12:46:28 +0000
commit870d622c6e3ed5d9a81c84e3f3d0fc287733472f (patch)
tree89cfcbd0e2a57404a13624031072d49060a75bfa /perl-install/install_steps.pm
parentfc479b2a46849ffe42eb17a3162a38e27900fe93 (diff)
downloaddrakx-870d622c6e3ed5d9a81c84e3f3d0fc287733472f.tar
drakx-870d622c6e3ed5d9a81c84e3f3d0fc287733472f.tar.gz
drakx-870d622c6e3ed5d9a81c84e3f3d0fc287733472f.tar.bz2
drakx-870d622c6e3ed5d9a81c84e3f3d0fc287733472f.tar.xz
drakx-870d622c6e3ed5d9a81c84e3f3d0fc287733472f.zip
no_comment
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 464e564ef..353a0e1a1 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -121,7 +121,7 @@ sub ask_mntpoint_s {
$m{$m} = 1;
#- in case the type does not correspond, force it to ext2
- $_->{type} = 0x83 if $m =~ m|^/| && !isDos($_) && !isWin($_)
+ $_->{type} = 0x83 if $m =~ m|^/| && !isFat($_);
}
}
@@ -143,7 +143,7 @@ sub choosePartitionsToFormat($$) {
my $t = fsedit::typeOfPart($_->{device});
$_->{toFormatUnsure} =
#- if detected dos/win, it's not precise enough to just compare the types (too many of them)
- isDos({ type => $t }) || isWin({type => $t}) ? !isDos($_) && !isWin($_) : $t != $_->{type};
+ isFat({ type => $t }) ? !isFat($_) : $t != $_->{type};
}
}
}