ids-functions.pl: Use "enabled/disabled" to mark if a rule should be

altered.

Signed-off-by: Stefan Schantl <stefan.schantl@ipfire.org>
This commit is contained in:
Stefan Schantl
2022-03-20 16:10:01 +01:00
parent 794469483f
commit 2deba6bf4a

View File

@@ -751,10 +751,10 @@ sub process_ruleset(@) {
next if ($rev lt $rules{$sid});
# Check if the rule should be enabled or disabled.
if ($modifications{$sid} eq "on") {
if ($modifications{$sid} eq "enabled") {
# Drop the # at the start of the line.
$line =~ s/^\#//;
} elsif ($modifications{$sid} eq "off") {
} elsif ($modifications{$sid} eq "disabled") {
# Add a # at the start of the line to disable the rule.
$line = "#$line" unless ($line =~ /^#/);
}