diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-12-03 14:11:36 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-12-03 14:11:36 +0000 |
commit | 26d3c3daae6be35438706677b775e653df556e44 (patch) | |
tree | c0be20b9b39abb78f4732e7c011af8d4be2fde37 | |
parent | 64cee0c9b9652b4fc0f497585e6c264614676d25 (diff) | |
download | drakx-26d3c3daae6be35438706677b775e653df556e44.tar drakx-26d3c3daae6be35438706677b775e653df556e44.tar.gz drakx-26d3c3daae6be35438706677b775e653df556e44.tar.bz2 drakx-26d3c3daae6be35438706677b775e653df556e44.tar.xz drakx-26d3c3daae6be35438706677b775e653df556e44.zip |
fix typo
-rw-r--r-- | perl-install/security/msec.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/security/msec.pm b/perl-install/security/msec.pm index bba1bc78b..ce5dbe4ff 100644 --- a/perl-install/security/msec.pm +++ b/perl-install/security/msec.pm @@ -203,7 +203,7 @@ sub config_function { # get_default_checks() - # return a list of periodic checks handled by security.conf sub get_default_checks { - map { if(/(.*?)=/, $1) } cat_("$::prefix/var/lib/msec/security.conf"); + map { if_(/(.*?)=/, $1) } cat_("$::prefix/var/lib/msec/security.conf"); } # get_check_value(check) |