Loading ares/ares_init.c +2 −1 Original line number Diff line number Diff line Loading @@ -136,7 +136,8 @@ int ares_init_options(ares_channel *channelptr, struct ares_options *options, * field, so there's not much to be done about that. */ gettimeofday(&tv, NULL); channel->next_id = (tv.tv_sec ^ tv.tv_usec ^ getpid()) & 0xffff; channel->next_id = (unsigned short) (tv.tv_sec ^ tv.tv_usec ^ getpid()) & 0xffff; channel->queries = NULL; Loading Loading
ares/ares_init.c +2 −1 Original line number Diff line number Diff line Loading @@ -136,7 +136,8 @@ int ares_init_options(ares_channel *channelptr, struct ares_options *options, * field, so there's not much to be done about that. */ gettimeofday(&tv, NULL); channel->next_id = (tv.tv_sec ^ tv.tv_usec ^ getpid()) & 0xffff; channel->next_id = (unsigned short) (tv.tv_sec ^ tv.tv_usec ^ getpid()) & 0xffff; channel->queries = NULL; Loading