aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/or/dns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/dns.c b/src/or/dns.c
index a61da05669..04c946b7c7 100644
--- a/src/or/dns.c
+++ b/src/or/dns.c
@@ -1173,7 +1173,7 @@ eventdns_callback(int result, char type, int count, int ttl, void *addresses,
}
static int
-assign_to_dnsworker(connection_t *exitconn)
+assign_to_dnsworker(edge_connection_t *exitconn)
{
char *addr = tor_strdup(exitconn->_base.address);
int r;
@@ -1184,7 +1184,7 @@ assign_to_dnsworker(connection_t *exitconn)
if (r) {
log_warn(LD_EXIT, "eventdns rejected address %s: error %d.",
escaped_safe_str(addr), r);
- if (exitconn->purpose == EXIT_PURPOSE_RESOLVE) {
+ if (exitconn->_base.purpose == EXIT_PURPOSE_RESOLVE) {
if (eventdns_err_is_transient(r))
send_resolved_cell(exitconn, RESOLVED_TYPE_ERROR_TRANSIENT);
else {