diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-09 02:42:55 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-09 02:42:55 +0000 |
commit | 36c5e47487a2682e9f948c2ea31f0c4ca43b9c4f (patch) | |
tree | 80f6a68469ffe3418e9c79339228f1358a94f258 /perl-install/raid.pm | |
parent | 590b7c13a157fbfd3899e3d67e5b740856c46fbb (diff) | |
download | drakx-36c5e47487a2682e9f948c2ea31f0c4ca43b9c4f.tar drakx-36c5e47487a2682e9f948c2ea31f0c4ca43b9c4f.tar.gz drakx-36c5e47487a2682e9f948c2ea31f0c4ca43b9c4f.tar.bz2 drakx-36c5e47487a2682e9f948c2ea31f0c4ca43b9c4f.tar.xz drakx-36c5e47487a2682e9f948c2ea31f0c4ca43b9c4f.zip |
don't need prefixing with current package
Diffstat (limited to 'perl-install/raid.pm')
-rw-r--r-- | perl-install/raid.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/raid.pm b/perl-install/raid.pm index b2819f185..c16f82378 100644 --- a/perl-install/raid.pm +++ b/perl-install/raid.pm @@ -161,7 +161,7 @@ sub inactive_mds() { sub free_mds { my ($raids) = @_; - difference2([ map { "md$_" } 0 .. raid::max_nb() ], [ map { $_->{device} } @$raids ]); + difference2([ map { "md$_" } 0 .. max_nb() ], [ map { $_->{device} } @$raids ]); } sub detect_during_install { |