mirror of
https://github.com/rofl0r/proxychains-ng.git
synced 2024-11-10 16:58:47 +00:00
fix signedness of hashfunc
This commit is contained in:
parent
3bd07fca00
commit
c3a0f677fb
@ -48,7 +48,8 @@ extern int proxychains_quiet_mode;
|
||||
internal_ip_lookup_table internal_ips = {0, 0, NULL};
|
||||
|
||||
|
||||
uint32_t dalias_hash(char* s) {
|
||||
uint32_t dalias_hash(char* s0) {
|
||||
unsigned char* s = (void*) s0;
|
||||
uint_fast32_t h = 0;
|
||||
while (*s) {
|
||||
h = 16*h + *s++;
|
||||
|
Loading…
Reference in New Issue
Block a user