diff --git a/dnscrypt-proxy/serversInfo.go b/dnscrypt-proxy/serversInfo.go index 64d0f2cd..14c1b86b 100644 --- a/dnscrypt-proxy/serversInfo.go +++ b/dnscrypt-proxy/serversInfo.go @@ -260,7 +260,7 @@ func (serversInfo *ServersInfo) estimatorUpdate(currentActive int) { if activeCount == serversCount { return } - candidate := rand.Intn(serversCount-activeCount)+activeCount + candidate := rand.Intn(serversCount-activeCount) + activeCount candidateRtt, currentActiveRtt := serversInfo.inner[candidate].rtt.Value(), serversInfo.inner[currentActive].rtt.Value() if currentActiveRtt < 0 { currentActiveRtt = candidateRtt