diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-05-07 15:41:55 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-05-07 15:41:55 +0000 |
commit | 6e0714d453adf6cb59f3a8083d3561d5f274be16 (patch) | |
tree | f1b76708279145c1eb63b7d23f5c7d08648858a5 /perl-install/modules.pm | |
parent | d91336f90687a1f2386f4941b1589c54af085983 (diff) | |
download | drakx-backup-do-not-use-6e0714d453adf6cb59f3a8083d3561d5f274be16.tar drakx-backup-do-not-use-6e0714d453adf6cb59f3a8083d3561d5f274be16.tar.gz drakx-backup-do-not-use-6e0714d453adf6cb59f3a8083d3561d5f274be16.tar.bz2 drakx-backup-do-not-use-6e0714d453adf6cb59f3a8083d3561d5f274be16.tar.xz drakx-backup-do-not-use-6e0714d453adf6cb59f3a8083d3561d5f274be16.zip |
no_comment
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 4 |
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"; } |