Fixed phase 5 rules not being excludable.

This commit is contained in:
brectanus 2008-01-08 20:45:54 +00:00
Родитель 433ecf3427
Коммит 31e3ada844
2 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

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

Просмотреть файл

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