diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2007-07-14 13:14:58 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2007-07-14 13:14:58 +0000 | 
| commit | 1261c3febab5aaba3feeaba8e689d11880c38b0f (patch) | |
| tree | cd9686c894ec5b37182bda3448ed53a5aa6c8554 /ares | |
| parent | 7fc300d5dc8e355b410f9810e4550a7b36c170f5 (diff) | |
Brad House's fix to hish a win32 compiler warning
Diffstat (limited to 'ares')
| -rw-r--r-- | ares/ares_init.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/ares/ares_init.c b/ares/ares_init.c index bc6a0ea6b..06dbb6cfe 100644 --- a/ares/ares_init.c +++ b/ares/ares_init.c @@ -1322,7 +1322,8 @@ static void init_id_key(rc4_key* key,int key_data_len)    randomize_key(key->state,key_data_len);    state = &key->state[0];    for(counter = 0; counter < 256; counter++) -        state[counter] = counter; +    /* unnecessary AND but it keeps some compilers happier */ +    state[counter] = counter & 0xff;    key->x = 0;    key->y = 0;    index1 = 0; | 
