Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
David Goulet
Tor
Commits
1621b1e0
Commit
1621b1e0
authored
Nov 07, 2007
by
Roger Dingledine
Browse files
start hunting a bug where bridge users don't always put
their un-keyed connections onto the orconn_identity_map. svn:r12418
parent
f18e9411
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/or/connection_or.c
View file @
1621b1e0
...
...
@@ -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
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment