mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2026-01-16 08:27:10 +03:00
Moves static methods from class String to the namespace string
This commit is contained in:
@@ -96,7 +96,7 @@ int SqlHexDecode::inplace(unsigned char *data, int len) {
|
||||
}
|
||||
|
||||
while (VALID_HEX(data[0]) && VALID_HEX(data[1])) {
|
||||
*d++ = modsecurity::utils::x2c(data);
|
||||
*d++ = utils::string::x2c(data);
|
||||
data += 2;
|
||||
count += 2;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user