diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-06-24 09:09:00 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-06-24 09:09:00 +0000 |
commit | abcfdced956bd05ce2df79cc1f483b6e5019323c (patch) | |
tree | d69eb57787add006fe2ca2d896e89b9a24b78b32 | |
parent | 921010e675eaebd97ed12f7926529dd44c271104 (diff) | |
download | drakx-abcfdced956bd05ce2df79cc1f483b6e5019323c.tar drakx-abcfdced956bd05ce2df79cc1f483b6e5019323c.tar.gz drakx-abcfdced956bd05ce2df79cc1f483b6e5019323c.tar.bz2 drakx-abcfdced956bd05ce2df79cc1f483b6e5019323c.tar.xz drakx-abcfdced956bd05ce2df79cc1f483b6e5019323c.zip |
fix stupid typo
-rw-r--r-- | perl-install/modules.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index 929399c15..aaaa7022e 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -434,7 +434,7 @@ sub when_load { eval { load('sd_mod') }; } if ($category =~ /sound/) { - my $sound_alias = find { /^sound-slot-[0-9]+$/ and $conf{$_}{alias} eq $module } keys %conf; + my $sound_alias = find { /^sound-slot-[0-9]+$/ and $conf{$_}{alias} eq $name } keys %conf; $sound_alias ||= 'sound-slot-0'; add_alias($sound_alias, $name); } |