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