mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 14:17:36 +03:00
Fix copy-paste oversight
I think these variables are always both nil or both not nil, but maybe in the future they might not be.
This commit is contained in:
parent
816acb9d8d
commit
cd675913b2
1 changed files with 1 additions and 1 deletions
|
@ -249,7 +249,7 @@ func _dnsExchange(proxy *Proxy, proto string, query *dns.Msg, serverAddress stri
|
|||
return nil, 0, err
|
||||
}
|
||||
upstreamAddr := tcpAddr
|
||||
if relayUDPAddr != nil {
|
||||
if relayTCPAddr != nil {
|
||||
proxy.prepareForRelay(tcpAddr.IP, tcpAddr.Port, &binQuery)
|
||||
upstreamAddr = relayTCPAddr
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue