mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-10-01 03:57:47 +03:00
Cosmetics: Fix typo. Remove not Remote
This commit is contained in:
@@ -350,7 +350,7 @@ bool Rule::evaluate(Transaction *trasn) {
|
||||
continue;
|
||||
}
|
||||
|
||||
for (auto &i : trasn->m_ruleRemoteTargetByTag) {
|
||||
for (auto &i : trasn->m_ruleRemoveTargetByTag) {
|
||||
std::string tag = i.first;
|
||||
std::string args = i.second;
|
||||
if (containsTag(tag, trasn) == false) {
|
||||
@@ -366,7 +366,7 @@ bool Rule::evaluate(Transaction *trasn) {
|
||||
if (ignoreVariable) {
|
||||
continue;
|
||||
}
|
||||
for (auto &i : trasn->m_ruleRemoteTargetById) {
|
||||
for (auto &i : trasn->m_ruleRemoveTargetById) {
|
||||
int id = i.first;
|
||||
std::string args = i.second;
|
||||
if (rule_id != id) {
|
||||
|
Reference in New Issue
Block a user