[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r12418: start hunting a bug where bridge users don't always put thei (tor/trunk/src/or)
Author: arma
Date: 2007-11-07 13:26:46 -0500 (Wed, 07 Nov 2007)
New Revision: 12418
Modified:
tor/trunk/src/or/connection_or.c
Log:
start hunting a bug where bridge users don't always put
their un-keyed connections onto the orconn_identity_map.
Modified: tor/trunk/src/or/connection_or.c
===================================================================
--- tor/trunk/src/or/connection_or.c 2007-11-07 17:57:09 UTC (rev 12417)
+++ tor/trunk/src/or/connection_or.c 2007-11-07 18:26:46 UTC (rev 12418)
@@ -39,8 +39,9 @@
tmp = digestmap_get(orconn_identity_map, conn->identity_digest);
if (!tmp) {
if (!tor_digest_is_zero(conn->identity_digest)) {
- log_warn(LD_BUG, "Didn't find connection on identity map when "
- "trying to remove it.");
+ log_warn(LD_BUG, "Didn't find connection '%s' on identity map when "
+ "trying to remove it.",
+ conn->nickname ? conn->nickname : "NULL");
}
return;
}