]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
start hunting a bug where bridge users don't always put
authorRoger Dingledine <arma@torproject.org>
Wed, 7 Nov 2007 18:26:46 +0000 (18:26 +0000)
committerRoger Dingledine <arma@torproject.org>
Wed, 7 Nov 2007 18:26:46 +0000 (18:26 +0000)
their un-keyed connections onto the orconn_identity_map.

svn:r12418

src/or/connection_or.c

index 36e9e0bb11fb6a2ebc17c3b12d545282f9c69e74..6e649bee2e94a1780f727a1b677067acf62193ca 100644 (file)
@@ -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;
   }