summaryrefslogtreecommitdiffstats
path: root/perl-install/modules.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2000-05-07 15:41:55 +0000
committerPascal Rigaux <pixel@mandriva.com>2000-05-07 15:41:55 +0000
commit6e0714d453adf6cb59f3a8083d3561d5f274be16 (patch)
treef1b76708279145c1eb63b7d23f5c7d08648858a5 /perl-install/modules.pm
parentd91336f90687a1f2386f4941b1589c54af085983 (diff)
downloaddrakx-6e0714d453adf6cb59f3a8083d3561d5f274be16.tar
drakx-6e0714d453adf6cb59f3a8083d3561d5f274be16.tar.gz
drakx-6e0714d453adf6cb59f3a8083d3561d5f274be16.tar.bz2
drakx-6e0714d453adf6cb59f3a8083d3561d5f274be16.tar.xz
drakx-6e0714d453adf6cb59f3a8083d3561d5f274be16.zip
no_comment
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r--perl-install/modules.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index bbc1a04f7..198bc118f 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -335,8 +335,8 @@ sub text_of_type($) {
sub text2driver($) {
my ($text) = @_;
- while (my ($k, $v) = each %drivers) {
- $v->{text} eq $text and return $k;
+ foreach (keys %drivers) {
+ $drivers{$_}{text} eq $text and return $_;
}
die "$text is not a valid module description";
}