Fixed phase 5 rules not being excludable.

This commit is contained in:
brectanus 2008-01-08 20:45:54 +00:00
parent 433ecf3427
commit 31e3ada844
2 changed files with 3 additions and 0 deletions

View File

@ -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).

View File

@ -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;
}