mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Fix compilation error left over from 1cbf45bed1
. (Bug 7021)
This commit is contained in:
parent
57b13ad5cc
commit
78e8eb5f2d
10
src/or/dns.c
10
src/or/dns.c
@ -1210,15 +1210,11 @@ configure_nameservers(int force)
|
||||
}
|
||||
|
||||
#ifdef HAVE_EVDNS_SET_DEFAULT_OUTGOING_BIND_ADDRESS
|
||||
if (options->OutboundBindAddress) {
|
||||
tor_addr_t addr;
|
||||
if (tor_addr_parse(&addr, options->OutboundBindAddress) < 0) {
|
||||
log_warn(LD_CONFIG,"Outbound bind address '%s' didn't parse. Ignoring.",
|
||||
options->OutboundBindAddress);
|
||||
} else {
|
||||
if (! tor_addr_is_null(options->_OutboundBindAddressIPv4)) {
|
||||
if (1) {
|
||||
int socklen;
|
||||
struct sockaddr_storage ss;
|
||||
socklen = tor_addr_to_sockaddr(&addr, 0,
|
||||
socklen = tor_addr_to_sockaddr(&options->_OutboundBindAddressIPv4, 0,
|
||||
(struct sockaddr *)&ss, sizeof(ss));
|
||||
if (socklen <= 0) {
|
||||
log_warn(LD_BUG, "Couldn't convert outbound bind address to sockaddr."
|
||||
|
Loading…
Reference in New Issue
Block a user