vector<pair<int, DNSName>> rcounts;
rcounts.reserve(counts.size());
for(const auto& c : counts)
- rcounts.push_back(make_pair(c.second, c.first));
+ rcounts.push_back(make_pair(c.second, c.first.makeLowerCase()));
sort(rcounts.begin(), rcounts.end(), [](const decltype(rcounts)::value_type& a,
const decltype(rcounts)::value_type& b) {
vector<pair<int, DNSName>> rcounts;
rcounts.reserve(counts.size());
for(const auto& c : counts)
- rcounts.push_back(make_pair(c.second, c.first));
+ rcounts.push_back(make_pair(c.second, c.first.makeLowerCase()));
sort(rcounts.begin(), rcounts.end(), [](const decltype(rcounts)::value_type& a,
const decltype(rcounts)::value_type& b) {