diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-30 22:54:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-30 22:54:49 +0000 |
commit | 4f85b0d92b9246709a53a85b45b15f73c7d97086 (patch) | |
tree | 0f62ec68e69cd1619f59fe77a5b572cd3805e7ec /perl-install/install_steps_interactive.pm | |
parent | c9ae469b014987aab6c76225859028ecffb77659 (diff) | |
download | drakx-4f85b0d92b9246709a53a85b45b15f73c7d97086.tar drakx-4f85b0d92b9246709a53a85b45b15f73c7d97086.tar.gz drakx-4f85b0d92b9246709a53a85b45b15f73c7d97086.tar.bz2 drakx-4f85b0d92b9246709a53a85b45b15f73c7d97086.tar.xz drakx-4f85b0d92b9246709a53a85b45b15f73c7d97086.zip |
add isFat_or_NTFS() and use it where possible instead of isFat() since Windows
is now using ntfs, not only Windows NT
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index b3f374446..5cffc7c15 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -294,7 +294,7 @@ sub choosePartitionsToFormat { my @l = grep { !$_->{isMounted} && $_->{mntpoint} && (!isSwap($_) || $::expert) && - (!isFat($_) && !isNT($_) || $_->{notFormatted} || $::expert) && + (!isFat_or_NTFS($_) || $_->{notFormatted} || $::expert) && (!isOtherAvailableFS($_) || $::expert || $_->{toFormat}) } @$fstab; $_->{toFormat} = 1 foreach grep { isSwap($_) && !$::expert } @$fstab; |