mirror of
https://github.com/openappsec/openappsec.git
synced 2025-11-16 09:21:54 +03:00
sync code
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