aboutsummaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-10-21 02:51:35 +0000
committerRoger Dingledine <arma@torproject.org>2006-10-21 02:51:35 +0000
commit0f33a548c2090c36aaca36b1a8e5e1c717d3c855 (patch)
tree412077366d0c41121b8babf20eeef33182de0e1d /src/or
parenta0ec758f9e0cf8288a366dde365db253cf4d5de3 (diff)
downloadtor-0f33a548c2090c36aaca36b1a8e5e1c717d3c855.tar
tor-0f33a548c2090c36aaca36b1a8e5e1c717d3c855.tar.gz
fix a string, pointed out by matt edman.
also fix a bug next to it that i noticed. svn:r8784
Diffstat (limited to 'src/or')
-rw-r--r--src/or/dns.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/dns.c b/src/or/dns.c
index 4a9853959..b0e87ac4e 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;
}
}