From 0cc3cceb85aa06571d6801830d3b2010ddd66e9c Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 24 Sep 2002 15:42:27 +0000 Subject: ignore_list is useless --- perl-install/security/msec.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'perl-install/security/msec.pm') diff --git a/perl-install/security/msec.pm b/perl-install/security/msec.pm index eea69cf4a..c069fba35 100644 --- a/perl-install/security/msec.pm +++ b/perl-install/security/msec.pm @@ -244,13 +244,12 @@ sub get_default_checks { my @checks = (); my $check_file = "$::prefix/var/lib/msec/security.conf"; - my @ignore_list = qw(MAIL_USER); if (-e $check_file) { open F, $check_file; while () { ($check, undef) = split(/=/, $_); - push @checks, $check if (!(member($check, @ignore_list))) + push @checks, $check if (!(member($check, qw(MAIL_USER)))) } close F; } -- cgit v1.2.1