From 31e3ada844465d744ab3380f6dce1e996117cac1 Mon Sep 17 00:00:00 2001 From: brectanus Date: Tue, 8 Jan 2008 20:45:54 +0000 Subject: [PATCH] Fixed phase 5 rules not being excludable. --- CHANGES | 2 ++ apache2/re.c | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGES b/CHANGES index 4b23ac27..ecca4040 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,8 @@ 02 Jan 2008 - 2.5.0-rc2 ----------------------- + * Phase 5 rules can now be removed via SecRuleRemoveBy* directives. + * Build is now 'configure' based (autotools). diff --git a/apache2/re.c b/apache2/re.c index f965c1a2..91a31830 100644 --- a/apache2/re.c +++ b/apache2/re.c @@ -1108,6 +1108,7 @@ int msre_ruleset_rule_remove_with_exception(msre_ruleset *ruleset, rule_exceptio count += msre_ruleset_phase_rule_remove_with_exception(ruleset, re, ruleset->phase_request_body); count += msre_ruleset_phase_rule_remove_with_exception(ruleset, re, ruleset->phase_response_headers); count += msre_ruleset_phase_rule_remove_with_exception(ruleset, re, ruleset->phase_response_body); + count += msre_ruleset_phase_rule_remove_with_exception(ruleset, re, ruleset->phase_logging); return count; }