[or-cvs] forward-port the shutting up

Roger Dingledine arma at seul.org
Fri Jan 28 10:00:32 UTC 2005


Update of /home2/or/cvsroot/tor/src/or
In directory moria.mit.edu:/home2/arma/work/onion/cvs/tor/src/or

Modified Files:
	cpuworker.c 
Log Message:
forward-port the shutting up


Index: cpuworker.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/cpuworker.c,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -d -r1.65 -r1.66
--- cpuworker.c	19 Jan 2005 23:15:59 -0000	1.65
+++ cpuworker.c	28 Jan 2005 10:00:29 -0000	1.66
@@ -147,7 +147,7 @@
       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 @@
       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 */



More information about the tor-commits mailing list