Skip to content
Snippets Groups Projects
Commit 8c3999c9 authored by Roger Dingledine's avatar Roger Dingledine
Browse files

make it less noisy for normal ORs when a server uses a false nickname

svn:r1359
parent 4a5586b8
No related branches found
No related tags found
No related merge requests found
......@@ -233,7 +233,8 @@ static int connection_tls_finish_handshake(connection_t *conn) {
}
crypto_free_pk_env(pk);
if (strcmp(conn->nickname, nickname)) {
log_fn(LOG_WARN,"Other side claims to be '%s', but we wanted '%s'",
log_fn(options.DirPort ? LOG_WARN : LOG_INFO,
"Other side claims to be '%s', but we expected '%s'",
nickname, conn->nickname);
return -1;
}
......
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