[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] make it less noisy for normal ORs when a server uses a fals...
- To: or-cvs@freehaven.net
- Subject: [or-cvs] make it less noisy for normal ORs when a server uses a fals...
- From: arma@seul.org (Roger Dingledine)
- Date: Sun, 28 Mar 2004 16:35:05 -0500 (EST)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Sun, 28 Mar 2004 16:35:23 -0500
- Reply-to: or-dev@freehaven.net
- Sender: owner-or-cvs@freehaven.net
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;
}