mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-11-18 18:30:35 +03:00
Using uint64_t instead of u_int64_t
This commit is contained in:
@@ -54,8 +54,8 @@ std::string ParityEven7bit::evaluate(std::string value,
|
||||
return ret;
|
||||
}
|
||||
|
||||
bool ParityEven7bit::inplace(unsigned char *input, u_int64_t input_len) {
|
||||
u_int64_t i;
|
||||
bool ParityEven7bit::inplace(unsigned char *input, uint64_t input_len) {
|
||||
uint64_t i;
|
||||
|
||||
i = 0;
|
||||
while (i < input_len) {
|
||||
|
||||
Reference in New Issue
Block a user