From: Roger Dingledine Date: Wed, 7 Nov 2007 18:26:46 +0000 (+0000) Subject: start hunting a bug where bridge users don't always put X-Git-Tag: tor-0.2.0.10-alpha~19 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1621b1e09b0395094a32a4133f7ad291347c28fb;p=thirdparty%2Ftor.git start hunting a bug where bridge users don't always put their un-keyed connections onto the orconn_identity_map. svn:r12418 --- diff --git a/src/or/connection_or.c b/src/or/connection_or.c index 36e9e0bb11..6e649bee2e 100644 --- a/src/or/connection_or.c +++ b/src/or/connection_or.c @@ -39,8 +39,9 @@ connection_or_remove_from_identity_map(or_connection_t *conn) 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; }