aboutsummaryrefslogtreecommitdiff
path: root/src/or/relay.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-12-19 21:56:43 +0000
committerRoger Dingledine <arma@torproject.org>2005-12-19 21:56:43 +0000
commitbb4662365b516ad8146d889ba016173d2f1d3ce9 (patch)
treebaa188a02b9beedd130ec15ae828508b60f5c6e3 /src/or/relay.c
parent0c455a427c374fcdebe08ecaa672f80bc194d6d5 (diff)
downloadtor-bb4662365b516ad8146d889ba016173d2f1d3ce9.tar.gz
tor-bb4662365b516ad8146d889ba016173d2f1d3ce9.zip
when we fail three times to resolve or connect, we were telling the
user it was because we failed to resolve. svn:r5620
Diffstat (limited to 'src/or/relay.c')
-rw-r--r--src/or/relay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/relay.c b/src/or/relay.c
index 028261078f..4cd4055a64 100644
--- a/src/or/relay.c
+++ b/src/or/relay.c
@@ -713,8 +713,8 @@ connection_edge_process_end_not_open(
return 0;
/* else, conn will get closed below */
} else {
- notice(LD_APP,"Have tried resolving address '%s' at %d different "
- "places. Giving up.",
+ notice(LD_APP,"Have tried resolving or connecting to address '%s' "
+ "at %d different places. Giving up.",
safe_str(conn->socks_request->address), MAX_RESOLVE_FAILURES);
/* clear the failures, so it will have a full try next time */
client_dns_clear_failures(conn->socks_request->address);