diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-03 20:59:16 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-03 20:59:16 +0000 |
commit | 10e4ad27deb56e8df7c68b9fec4b8789d80068bf (patch) | |
tree | d2ebe26b92aa5969997d3749d94422d4a2be19c7 /perl-install/install_steps_interactive.pm | |
parent | 10c54b8c2b4628bd791f5616c5d5713acc0bb85a (diff) | |
download | drakx-10e4ad27deb56e8df7c68b9fec4b8789d80068bf.tar drakx-10e4ad27deb56e8df7c68b9fec4b8789d80068bf.tar.gz drakx-10e4ad27deb56e8df7c68b9fec4b8789d80068bf.tar.bz2 drakx-10e4ad27deb56e8df7c68b9fec4b8789d80068bf.tar.xz drakx-10e4ad27deb56e8df7c68b9fec4b8789d80068bf.zip |
replace isJfs/isXfs/... with isThisFs("jfs"
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 7a3fc31df..4bd4210ad 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -410,7 +410,7 @@ sub choosePartitionsToFormat { ({ text => $name2label->($e), type => 'bool', val => \$e->{toFormatTmp} - }, if_(!isLoopback($_) && !isReiserfs($_), { + }, if_(!isLoopback($_) && !isThisFs("reiserfs", $_), { text => $name2label->($e), type => 'bool', advanced => 1, disabled => sub { !$e->{toFormatTmp} }, val => \$e->{toFormatCheck} |