aboutsummaryrefslogtreecommitdiff
path: root/src/or/cpuworker.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-01-28 10:00:29 +0000
committerRoger Dingledine <arma@torproject.org>2005-01-28 10:00:29 +0000
commit0b9b97aaf4faf68d78fe54670ddc614f21f68764 (patch)
tree59e41463fe05cfca3637b76d0dcb0afd243f4000 /src/or/cpuworker.c
parentb2fbd834f0c339ce2102af424e68c85aa566153e (diff)
downloadtor-0b9b97aaf4faf68d78fe54670ddc614f21f68764.tar
tor-0b9b97aaf4faf68d78fe54670ddc614f21f68764.tar.gz
forward-port the shutting up
svn:r3450
Diffstat (limited to 'src/or/cpuworker.c')
-rw-r--r--src/or/cpuworker.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/cpuworker.c b/src/or/cpuworker.c
index c198325b8..62a99d589 100644
--- a/src/or/cpuworker.c
+++ b/src/or/cpuworker.c
@@ -147,7 +147,7 @@ int connection_cpu_process_inbuf(connection_t *conn) {
circ = circuit_get_by_circ_id_conn(circ_id, p_conn);
if (success == 0) {
- log_fn(LOG_WARN,"decoding onionskin failed. Closing.");
+ log_fn(LOG_INFO,"decoding onionskin failed. Closing.");
if (circ)
circuit_mark_for_close(circ);
goto done_processing;
@@ -248,7 +248,7 @@ static int cpuworker_main(void *data) {
if (onion_skin_server_handshake(question, onion_key, last_onion_key,
reply_to_proxy, keys, 40+32) < 0) {
/* failure */
- log_fn(LOG_WARN,"onion_skin_server_handshake failed.");
+ log_fn(LOG_INFO,"onion_skin_server_handshake failed.");
memset(buf,0,LEN_ONION_RESPONSE); /* send all zeros for failure */
} else {
/* success */