diff options
author | Roger Dingledine <arma@torproject.org> | 2005-01-31 04:03:57 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-01-31 04:03:57 +0000 |
commit | 9856e328c4c8684349c41b8a7e421926a594682e (patch) | |
tree | bf7948729ef77a29d602fa6ecff5cd33a6c1c979 /src/or/onion.c | |
parent | a7138f253515fbfb673045da3949297adc74ea23 (diff) | |
download | tor-9856e328c4c8684349c41b8a7e421926a594682e.tar.gz tor-9856e328c4c8684349c41b8a7e421926a594682e.zip |
stop logging loudly when a client tries an old onion key. it's
time to give up on that issue, at least for now.
svn:r3479
Diffstat (limited to 'src/or/onion.c')
-rw-r--r-- | src/or/onion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/onion.c b/src/or/onion.c index 5beb16d41c..d8fa3005f7 100644 --- a/src/or/onion.c +++ b/src/or/onion.c @@ -212,7 +212,7 @@ onion_skin_server_handshake(char *onion_skin, /* ONIONSKIN_CHALLENGE_LEN bytes * break; } if (len<0) { - log_fn(LOG_WARN, "Couldn't decrypt onionskin: client may be using old onion key"); + log_fn(LOG_INFO, "Couldn't decrypt onionskin: client may be using old onion key"); goto err; } else if (len != DH_KEY_LEN) { log_fn(LOG_WARN, "Unexpected onionskin length after decryption: %d", |