Fix initcol error message wording

This commit is contained in:
Martin Vierula 2022-04-26 16:40:03 -07:00
parent 563fabebff
commit f7f8a9827f
No known key found for this signature in database
GPG Key ID: F2FC4E45883BCBA4
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
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
[Issue #1900 - @martinhsv]
- Add DebugLog message for bad pattern in rx operator

View File

@ -46,7 +46,7 @@ bool InitCol::init(std::string *error) {
m_collection_key != "global" &&
m_collection_key != "resource") {
error->assign("Something wrong with initcol: collection must be " \
"`ip' or `global'");
"`ip', `global' or `resource'");
return false;
}