aboutsummaryrefslogtreecommitdiff
path: root/src/or/dns.c
diff options
context:
space:
mode:
authorvalerino <valerino@te4i.com>2010-05-20 22:51:47 -0400
committerNick Mathewson <nickm@torproject.org>2010-05-20 22:51:47 -0400
commitddf250119df44927c424512f286a3255aea1d16b (patch)
tree00001b45cdc4604f387d3f955ff455d5f3d94d8e /src/or/dns.c
parentafe58cfa890ca90d9d3a54e8bbea834ec3061f5e (diff)
downloadtor-ddf250119df44927c424512f286a3255aea1d16b.tar.gz
tor-ddf250119df44927c424512f286a3255aea1d16b.zip
Log the correct address when purging a mismatchd DNS cache address
Diffstat (limited to 'src/or/dns.c')
-rw-r--r--src/or/dns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/dns.c b/src/or/dns.c
index 192a1929d7..fa26cf062a 100644
--- a/src/or/dns.c
+++ b/src/or/dns.c
@@ -453,7 +453,7 @@ purge_expired_resolves(time_t now)
log_err(LD_BUG, "The expired resolve we purged didn't match any in"
" the cache. Tried to purge %s (%p); instead got %s (%p).",
resolve->address, (void*)resolve,
- removed ? removed->address : "NULL", (void*)remove);
+ removed ? removed->address : "NULL", (void*)removed);
}
tor_assert(removed == resolve);
} else {