fix signedness of hashfunc

remote-dns
rofl0r 2012-01-17 16:09:55 +01:00
parent 3bd07fca00
commit c3a0f677fb
1 changed files with 2 additions and 1 deletions

View File

@ -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++;