diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-09-06 12:44:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-09-06 12:44:47 +0000 |
commit | 4b8d53d3d043a3111a946534c525ceb84bd1d369 (patch) | |
tree | f4cacf802c32f0b20788b6af63a12a9f7c0b5633 /perl-install/fsedit.pm | |
parent | 4e28bea0321e908976f463141785dfde000dc2fc (diff) | |
download | drakx-4b8d53d3d043a3111a946534c525ceb84bd1d369.tar drakx-4b8d53d3d043a3111a946534c525ceb84bd1d369.tar.gz drakx-4b8d53d3d043a3111a946534c525ceb84bd1d369.tar.bz2 drakx-4b8d53d3d043a3111a946534c525ceb84bd1d369.tar.xz drakx-4b8d53d3d043a3111a946534c525ceb84bd1d369.zip |
add journalised in legend, fix the use
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index e0b3f3d0d..2c4cd0e66 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -392,7 +392,7 @@ sub suggest_part { defined $best or return; #- sorry no suggestion :( $part->{mntpoint} = $best->{mntpoint}; - $part->{type} = $best->{type}; + $part->{type} = $best->{type} if !(isTrueFS($best) && isTrueFS($part)); $part->{size} = computeSize($part, $best, $all_hds, $suggestions); 1; } |