diff options
author | Eugeni Dodonov <eugeni@mandriva.org> | 2009-04-22 19:21:09 +0000 |
---|---|---|
committer | Eugeni Dodonov <eugeni@mandriva.org> | 2009-04-22 19:21:09 +0000 |
commit | b8c32215cf9c770c1d80ccc7e29e41ace3d68f62 (patch) | |
tree | b176a22a53481b78d723df7177d04e0b15a9be1d /src | |
parent | 180a597aee2ef60295d54815b177840aa5fc178c (diff) | |
download | msec-b8c32215cf9c770c1d80ccc7e29e41ace3d68f62.tar msec-b8c32215cf9c770c1d80ccc7e29e41ace3d68f62.tar.gz msec-b8c32215cf9c770c1d80ccc7e29e41ace3d68f62.tar.bz2 msec-b8c32215cf9c770c1d80ccc7e29e41ace3d68f62.tar.xz msec-b8c32215cf9c770c1d80ccc7e29e41ace3d68f62.zip |
Fixed command inversion between DNS_SPOOFING_PROTECTION and
IP_SPOOFING_PROTECTION.
Diffstat (limited to 'src')
-rw-r--r-- | src/msec/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/msec/config.py b/src/msec/config.py index 12188bf..37880e7 100644 --- a/src/msec/config.py +++ b/src/msec/config.py @@ -94,8 +94,8 @@ SETTINGS = {'BASE_LEVEL': ("libmsec.base_level", 'CREATE_SERVER_LINK': ("libmsec.create_server_link", ['no', 'remote', 'local']), 'ENABLE_AT_CRONTAB': ("libmsec.enable_at_crontab", ['yes', 'no']), 'ENABLE_CONSOLE_LOG': ("libmsec.enable_console_log", ['yes', 'no']), - 'ENABLE_DNS_SPOOFING_PROTECTION':("libmsec.enable_ip_spoofing_protection", ['yes', 'no']), - 'ENABLE_IP_SPOOFING_PROTECTION': ("libmsec.enable_dns_spoofing_protection", ['yes', 'no']), + 'ENABLE_DNS_SPOOFING_PROTECTION':("libmsec.enable_dns_spoofing_protection", ['yes', 'no']), + 'ENABLE_IP_SPOOFING_PROTECTION': ("libmsec.enable_ip_spoofing_protection", ['yes', 'no']), 'ENABLE_LOG_STRANGE_PACKETS': ("libmsec.enable_log_strange_packets", ['yes', 'no']), 'ENABLE_MSEC_CRON': ("libmsec.enable_msec_cron", ['yes', 'no']), 'ENABLE_SUDO': ("libmsec.enable_sudo", ['yes', 'no', 'wheel']), |