diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-06-12 18:35:28 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-06-12 18:35:28 +0000 |
commit | ca4a18b18a2e7d4381368545fd0ed7ce512c8a3a (patch) | |
tree | 040bf94b5715e6f221c9ce12f4440e8741f263ce | |
parent | 5f69a1add797a50e16f7256bd561bb4ac32188ff (diff) | |
download | drakx-ca4a18b18a2e7d4381368545fd0ed7ce512c8a3a.tar drakx-ca4a18b18a2e7d4381368545fd0ed7ce512c8a3a.tar.gz drakx-ca4a18b18a2e7d4381368545fd0ed7ce512c8a3a.tar.bz2 drakx-ca4a18b18a2e7d4381368545fd0ed7ce512c8a3a.tar.xz drakx-ca4a18b18a2e7d4381368545fd0ed7ce512c8a3a.zip |
control is unused here
-rw-r--r-- | perl-install/authentication.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm index 527cba940..21f9705ee 100644 --- a/perl-install/authentication.pm +++ b/perl-install/authentication.pm @@ -466,7 +466,7 @@ sub get_raw_pam_authentication() { my %before_deny; foreach (cat_("$::prefix/etc/pam.d/system-auth")) { #my ($type, $control, $module, @para) = split; - my ($type, $control, $other) = /(\S+)\s+(\[.*?\]|\S+)\s+(.*)/; + my ($type, $_control, $other) = /(\S+)\s+(\[.*?\]|\S+)\s+(.*)/; my ($module, @para) = split(' ', $other); if ($module = pam_module_from_path($module)) { #$before_deny{$type}{$module} = \@para if $control eq 'sufficient' && member($module, pam_modules()); |