From 0f33a548c2090c36aaca36b1a8e5e1c717d3c855 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Sat, 21 Oct 2006 02:51:35 +0000 Subject: [PATCH] fix a string, pointed out by matt edman. also fix a bug next to it that i noticed. svn:r8784 --- src/or/dns.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/or/dns.c b/src/or/dns.c index 4a9853959e..b0e87ac4ed 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -1655,10 +1655,11 @@ wildcard_increment_answer(const char *id) log(notice_given ? LOG_INFO : LOG_NOTICE, LD_EXIT, "Your DNS provider has given \"%s\" as an answer for %d different " "invalid addresses. Apparently they are hijacking DNS failures. " - "I'll trying to correct for this by treating future occurrences of " + "I'll try to correct for this by treating future occurrences of " "\"%s\" as 'not found'.", id, *ip, id); smartlist_add(dns_wildcard_list, tor_strdup(id)); } + notice_given = 1; } } -- 2.11.4.GIT