diff options
Diffstat (limited to 'src/or/onion_ntor.c')
-rw-r--r-- | src/or/onion_ntor.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/or/onion_ntor.c b/src/or/onion_ntor.c index b91ecbee3..ef501f69d 100644 --- a/src/or/onion_ntor.c +++ b/src/or/onion_ntor.c @@ -291,11 +291,8 @@ onion_skin_ntor_client_handshake( memwipe(&s, 0, sizeof(s)); - if (bad & 4) { - log_warn(LD_PROTOCOL, "Incorrect digest from ntor circuit extension " - "request."); - } else if (bad) { - log_warn(LD_PROTOCOL, "Invalid result from curve25519 handshake"); + if (bad) { + log_warn(LD_PROTOCOL, "Invalid result from curve25519 handshake: %d", bad); } return bad ? -1 : 0; |