From ad734e7b2d9b45fbfa8d9ebc83828f12c59399e3 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 14 Jul 2007 13:14:58 +0000 Subject: Brad House's fix to hish a win32 compiler warning --- ares_init.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ares_init.c b/ares_init.c index bc6a0ea..06dbb6c 100644 --- a/ares_init.c +++ b/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; -- cgit v1.2.3