]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
forward-port the shutting up
authorRoger Dingledine <arma@torproject.org>
Fri, 28 Jan 2005 10:00:29 +0000 (10:00 +0000)
committerRoger Dingledine <arma@torproject.org>
Fri, 28 Jan 2005 10:00:29 +0000 (10:00 +0000)
svn:r3450

src/or/cpuworker.c

index c198325b86ace53192e37eaa49b744f4f15a34eb..62a99d589f5e5abef2e8f4fbb8921052a8df3b15 100644 (file)
@@ -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 */