mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-30 19:47:47 +03:00
Cosmetics: Fix coding style
This commit is contained in:
@@ -35,9 +35,11 @@ namespace Variables {
|
||||
|
||||
std::list<ModSecurityStringVar *> *
|
||||
TimeEpoch::evaluate(Assay *assay) {
|
||||
std::list<ModSecurityStringVar *> *resl = new std::list<ModSecurityStringVar *>();
|
||||
std::list<ModSecurityStringVar *> *resl =
|
||||
new std::list<ModSecurityStringVar *>();
|
||||
|
||||
resl->push_back(new ModSecurityStringVar("TIME_EPOCH", std::to_string(std::time(nullptr))));
|
||||
resl->push_back(new ModSecurityStringVar("TIME_EPOCH",
|
||||
std::to_string(std::time(nullptr))));
|
||||
|
||||
return resl;
|
||||
}
|
||||
|
Reference in New Issue
Block a user