From edaa0da34e4feadcab13ccaeb2dc57ad2620d4f2 Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Thu, 19 Sep 2002 10:00:47 +0000 Subject: avoid proposing ntfs partition to be formatted. --- perl-install/install_steps_interactive.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 68efd61f3..d49d40729 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -414,7 +414,7 @@ sub choosePartitionsToFormat { my @l = grep { !$_->{isMounted} && $_->{mntpoint} && (!isSwap($_) || $::expert) && - (!isFat($_) || $_->{notFormatted} || $::expert) && + (!isFat($_) && !isNT($_) || $_->{notFormatted} || $::expert) && (!isOtherAvailableFS($_) || $::expert || $_->{toFormat}) } @$fstab; $_->{toFormat} = 1 foreach grep { isSwap($_) && !$::expert } @$fstab; -- cgit v1.2.1