aboutsummaryrefslogtreecommitdiff
path: root/src/or
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-10-05 08:23:21 +0000
committerRoger Dingledine <arma@torproject.org>2006-10-05 08:23:21 +0000
commit64b5fd3194446aefe39480d0caf15d72531572d1 (patch)
tree4457eaa73fc7e801b0f28ff6e03a336cd891ba5d /src/or
parent8c1121231720d659e2ad17db87ef58410b5bc867 (diff)
downloadtor-64b5fd3194446aefe39480d0caf15d72531572d1.tar
tor-64b5fd3194446aefe39480d0caf15d72531572d1.tar.gz
checkpoint some cleanups
svn:r8599
Diffstat (limited to 'src/or')
-rw-r--r--src/or/connection_edge.c2
-rw-r--r--src/or/dns.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c
index e8902273d..219b22531 100644
--- a/src/or/connection_edge.c
+++ b/src/or/connection_edge.c
@@ -1885,7 +1885,7 @@ connection_exit_begin_conn(cell_t *cell, circuit_t *circ)
* and users who'd be better off with, well, single-hop proxies.
*/
log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
- "Attempt to open a stream on first hop of circuit. Rejecting.");
+ "Attempt to open a stream on first hop of circuit. Dropping.");
tor_free(address);
return 0;
}
diff --git a/src/or/dns.c b/src/or/dns.c
index 710985d48..a47290e73 100644
--- a/src/or/dns.c
+++ b/src/or/dns.c
@@ -1711,7 +1711,7 @@ launch_wildcard_check(int min_len, int max_len, const char *suffix)
addr = tor_strdup(name);
r = evdns_resolve_ipv4(name, DNS_QUERY_NO_SEARCH,
- evdns_wildcard_check_callback, addr);
+ evdns_wildcard_check_callback, addr);
if (r)
tor_free(addr);
}