diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-07-05 05:58:27 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-07-05 05:58:27 +0000 |
commit | 51fd51c2f560620d0e5c73a824d7677661f9c385 (patch) | |
tree | fd587ea47a47d52ee13aae238c37aa9414473c59 /perl-install/fsedit.pm | |
parent | cfa7a2a5576e1723c50bf22448360f7527694b9a (diff) | |
download | drakx-51fd51c2f560620d0e5c73a824d7677661f9c385.tar drakx-51fd51c2f560620d0e5c73a824d7677661f9c385.tar.gz drakx-51fd51c2f560620d0e5c73a824d7677661f9c385.tar.bz2 drakx-51fd51c2f560620d0e5c73a824d7677661f9c385.tar.xz drakx-51fd51c2f560620d0e5c73a824d7677661f9c385.zip |
create rationalize_options() and use it (bugzilla #3525)
more checks should be done in this function, and used at more places (but where?)
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 921d96d63..89e999b01 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -771,7 +771,8 @@ sub change_type { $part->{mntpoint} = '' if isRawLVM({ type => $type }) || isRawRAID({ type => $type }); $part->{type} = $type; $part->{notFormatted} = 1; - $part->{isFormatted} = 0; + $part->{isFormatted} = 0; + fs::rationalize_options($part); } sub rescuept($) { |