summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake/interactive.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-08-02 08:10:53 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-08-02 08:10:53 +0000
commit4754dfeb3a7869aac8cc21e5049fddb010cc0ecc (patch)
treee9c891b1e13374833e97c02c794d28a2c5db341b /perl-install/diskdrake/interactive.pm
parentcdf5a794b4869f7e9b598eb32eb3662f4842263f (diff)
downloaddrakx-4754dfeb3a7869aac8cc21e5049fddb010cc0ecc.tar
drakx-4754dfeb3a7869aac8cc21e5049fddb010cc0ecc.tar.gz
drakx-4754dfeb3a7869aac8cc21e5049fddb010cc0ecc.tar.bz2
drakx-4754dfeb3a7869aac8cc21e5049fddb010cc0ecc.tar.xz
drakx-4754dfeb3a7869aac8cc21e5049fddb010cc0ecc.zip
fsedit::check_fs_type() is now fs::type::check()
Diffstat (limited to 'perl-install/diskdrake/interactive.pm')
-rw-r--r--perl-install/diskdrake/interactive.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index c5bbccdff..53f006b87 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -1021,7 +1021,7 @@ sub partitions_suggestions {
sub check_type {
my ($in, $type, $hd, $part) = @_;
- eval { fsedit::check_fs_type($type->{fs_type}, $hd, $part) };
+ eval { fs::type::check($type->{fs_type}, $hd, $part) };
if (my $err = $@) {
$in->ask_warn('', formatError($err));
return;