mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Merge branch 'maint-0.3.2'
This commit is contained in:
commit
4ef70ff389
4
changes/ticket24097
Normal file
4
changes/ticket24097
Normal file
@ -0,0 +1,4 @@
|
||||
o Minor features (logging):
|
||||
- Downgrade a pair of log messages that could occur when an exit's
|
||||
resolver gave us an unusual (but not forbidden) response.
|
||||
Closes ticket 24097.
|
@ -1578,10 +1578,11 @@ evdns_callback(int result, char type, int count, int ttl, void *addresses,
|
||||
escaped_safe_str(hostname));
|
||||
tor_free(escaped_address);
|
||||
} else if (count) {
|
||||
log_warn(LD_EXIT, "eventdns returned only non-IPv4 answers for %s.",
|
||||
log_info(LD_EXIT, "eventdns returned only unrecognized answer types "
|
||||
" for %s.",
|
||||
escaped_safe_str(string_address));
|
||||
} else {
|
||||
log_warn(LD_BUG, "eventdns returned no addresses or error for %s!",
|
||||
log_info(LD_EXIT, "eventdns returned no addresses or error for %s.",
|
||||
escaped_safe_str(string_address));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user