fixed signed-unsigned issue from 166

Loss of entropy can be discussed at a later time, but is
not deemed a significant issue for now.
This commit is contained in:
Thomas Winget 2014-10-02 19:12:12 -04:00
parent 1cf22b27a6
commit aeaa44fe86
No known key found for this signature in database
GPG key ID: 58131A160789E630

View file

@ -124,9 +124,9 @@ bool load_checkpoints_from_dns(cryptonote::checkpoints& checkpoints)
std::random_device rd;
std::mt19937 gen(rd());
std::uniform_int_distribution<int> dis(0, dns_urls.size() - 1);
int first_index = dis(gen);
size_t first_index = dis(gen);
int cur_index = first_index;
size_t cur_index = first_index;
do
{
records = tools::DNSResolver::instance().get_txt_record(dns_urls[cur_index], avail, valid);