mirror of
https://github.com/openappsec/openappsec.git
synced 2025-11-16 09:21:54 +03:00
Aug 08 2025 dev (#336)
* sync code * sync code * sync code --------- Co-authored-by: Ned Wright <nedwright@proton.me>
This commit is contained in:
@@ -394,7 +394,7 @@ Buffer::isEqualLowerCase(const Buffer &buf) const
|
||||
{
|
||||
if (len != buf.size()) return false;
|
||||
for (uint i = 0; i < len; i++) {
|
||||
if (tolower((*this)[i]) != buf[i]) return false;
|
||||
if (tolower((*this)[i]) != tolower(buf[i])) return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user