mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-10-01 12:07:46 +03:00
Renames class Assay to Transaction
This commit is contained in:
@@ -23,9 +23,9 @@
|
||||
namespace modsecurity {
|
||||
namespace operators {
|
||||
|
||||
bool Ge::evaluate(Assay *assay, const std::string &input) {
|
||||
std::string p = MacroExpansion::expand(param, assay);
|
||||
std::string i = MacroExpansion::expand(input, assay);
|
||||
bool Ge::evaluate(Transaction *transaction, const std::string &input) {
|
||||
std::string p = MacroExpansion::expand(param, transaction);
|
||||
std::string i = MacroExpansion::expand(input, transaction);
|
||||
|
||||
bool ge = atoll(i.c_str()) >= atoll(p.c_str());
|
||||
|
||||
|
Reference in New Issue
Block a user