Skip to content

Commit

Permalink
u_int instead of uint for windows compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ithilgore committed Apr 10, 2016
1 parent 58235ee commit d72ab98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ncrack_mysql.cc
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ mysql_loop_read(nsock_pool nsp, Connection *con, char *mysql_auth_method, char *


static void
xor_hashes(char *to, const u_char *s1, const u_char *s2, uint len)
xor_hashes(char *to, const u_char *s1, const u_char *s2, u_int len)
{
const uint8_t *s1_end= s1 + len;
while (s1 < s1_end)
Expand Down

0 comments on commit d72ab98

Please sign in to comment.