mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
Fix initcol error message wording
This commit is contained in:
parent
563fabebff
commit
f7f8a9827f
2
CHANGES
2
CHANGES
@ -1,6 +1,8 @@
|
|||||||
v3.x.y - YYYY-MMM-DD (to be released)
|
v3.x.y - YYYY-MMM-DD (to be released)
|
||||||
-------------------------------------
|
-------------------------------------
|
||||||
|
|
||||||
|
- Fix initcol error message wording
|
||||||
|
[Issue #2731 - @877509395, @martinhsv]
|
||||||
- Tolerate other parameters after boundary in multipart C-T
|
- Tolerate other parameters after boundary in multipart C-T
|
||||||
[Issue #1900 - @martinhsv]
|
[Issue #1900 - @martinhsv]
|
||||||
- Add DebugLog message for bad pattern in rx operator
|
- Add DebugLog message for bad pattern in rx operator
|
||||||
|
@ -46,7 +46,7 @@ bool InitCol::init(std::string *error) {
|
|||||||
m_collection_key != "global" &&
|
m_collection_key != "global" &&
|
||||||
m_collection_key != "resource") {
|
m_collection_key != "resource") {
|
||||||
error->assign("Something wrong with initcol: collection must be " \
|
error->assign("Something wrong with initcol: collection must be " \
|
||||||
"`ip' or `global'");
|
"`ip', `global' or `resource'");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user