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
27965f1e
Unverified
Commit
27965f1e
authored
Oct 23, 2019
by
teor
Browse files
Merge remote-tracking branch 'tor-github/pr/1284' into maint-0.3.5
parents
003be727
05fa1689
Changes
2
Hide whitespace changes
Inline
Side-by-side
changes/bug12399
0 → 100644
View file @
27965f1e
o Minor bugfixes (logging):
- Change log level of message "Hash of session info was not as expected"
to LOG_PROTOCOL_WARN. Fixes bug 12399; bugfix on 0.1.1.10-alpha.
src/feature/rend/rendmid.c
View file @
27965f1e
...
...
@@ -70,7 +70,8 @@ rend_mid_establish_intro_legacy(or_circuit_t *circ, const uint8_t *request,
goto
err
;
}
if
(
tor_memneq
(
expected_digest
,
request
+
2
+
asn1len
,
DIGEST_LEN
))
{
log_warn
(
LD_PROTOCOL
,
"Hash of session info was not as expected."
);
log_fn
(
LOG_PROTOCOL_WARN
,
LD_PROTOCOL
,
"Hash of session info was not as expected."
);
reason
=
END_CIRC_REASON_TORPROTOCOL
;
goto
err
;
}
...
...
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