[or-cvs] make it less noisy for normal ORs when a server uses a fals...

Roger Dingledine arma at seul.org
Sun Mar 28 21:35:05 UTC 2004


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

Modified Files:
	connection_or.c 
Log Message:
make it less noisy for normal ORs when a server uses a false nickname


Index: connection_or.c
===================================================================
RCS file: /home/or/cvsroot/src/or/connection_or.c,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -d -r1.91 -r1.92
--- connection_or.c	26 Mar 2004 22:07:44 -0000	1.91
+++ connection_or.c	28 Mar 2004 21:35:02 -0000	1.92
@@ -233,7 +233,8 @@
   }
   crypto_free_pk_env(pk);
   if (strcmp(conn->nickname, nickname)) {
-    log_fn(LOG_WARN,"Other side claims to be '%s', but we wanted '%s'",
+    log_fn(options.DirPort ? LOG_WARN : LOG_INFO,
+           "Other side claims to be '%s', but we expected '%s'",
            nickname, conn->nickname);
     return -1;
   }



More information about the tor-commits mailing list