Skip to content
Snippets Groups Projects
Commit 05fa1689 authored by rl1987's avatar rl1987 Committed by Nick Mathewson
Browse files

Change loglevel of message 'Hash of session info was not as expected'

parent 1132dc9f
No related branches found
No related tags found
No related merge requests found
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.
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment