summaryrefslogtreecommitdiffstats
path: root/perl-install/security
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-11-11 13:29:44 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-11-11 13:29:44 +0000
commitc1e398be894ecce6394bd76c99b76c022979ac62 (patch)
tree62f279c533f8b96547b3fbf261449705426bb189 /perl-install/security
parentd545c394e5c9b2cab90b525c32de553e3d5bbfb8 (diff)
downloaddrakx-c1e398be894ecce6394bd76c99b76c022979ac62.tar
drakx-c1e398be894ecce6394bd76c99b76c022979ac62.tar.gz
drakx-c1e398be894ecce6394bd76c99b76c022979ac62.tar.bz2
drakx-c1e398be894ecce6394bd76c99b76c022979ac62.tar.xz
drakx-c1e398be894ecce6394bd76c99b76c022979ac62.zip
various small syntax enhancements to please perl_checker
Diffstat (limited to 'perl-install/security')
-rw-r--r--perl-install/security/msec.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/security/msec.pm b/perl-install/security/msec.pm
index c069fba35..76142da0d 100644
--- a/perl-install/security/msec.pm
+++ b/perl-install/security/msec.pm
@@ -103,11 +103,11 @@ sub get_value {
if (-e $item_file) {
open F, $item_file;
while(<F>) {
- if($_ =~ /^$item/) {
+ if ($_ =~ /^$item/) {
if ($category eq 'functions') {
my $i = $_;
(undef, $_) = split /\(/;
- tr /()//d;
+ tr/()//d;
$value = $_;
$_ = $i;
} elsif ($category eq 'checks') {