mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-06 06:37: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
|
return nil, 0, err
|
||||||
}
|
}
|
||||||
upstreamAddr := tcpAddr
|
upstreamAddr := tcpAddr
|
||||||
if relayUDPAddr != nil {
|
if relayTCPAddr != nil {
|
||||||
proxy.prepareForRelay(tcpAddr.IP, tcpAddr.Port, &binQuery)
|
proxy.prepareForRelay(tcpAddr.IP, tcpAddr.Port, &binQuery)
|
||||||
upstreamAddr = relayTCPAddr
|
upstreamAddr = relayTCPAddr
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue