diff options
author | Mike Perry <mikeperry-git@fscked.org> | 2009-09-06 20:43:02 -0700 |
---|---|---|
committer | Mike Perry <mikeperry-git@fscked.org> | 2009-09-16 15:55:36 -0700 |
commit | 63be2df84f7d23aa92426d6253ff18840e152254 (patch) | |
tree | 940fa2ebbda828a482667ee0d043154e7f59810b /src/or/circuituse.c | |
parent | 672e2f6908fda52897c9564b756de743692d1d55 (diff) | |
download | tor-63be2df84f7d23aa92426d6253ff18840e152254.tar.gz tor-63be2df84f7d23aa92426d6253ff18840e152254.zip |
Fix issues found by arma in review.
Diffstat (limited to 'src/or/circuituse.c')
-rw-r--r-- | src/or/circuituse.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/or/circuituse.c b/src/or/circuituse.c index f6a41665d1..7ca65bcc53 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -858,10 +858,8 @@ circuit_build_failed(origin_circuit_t *circ) break; case CIRCUIT_PURPOSE_C_INTRODUCING: /* at Alice, connecting to intro point */ - circuit_increment_failure_count(); /* Don't increment failure count, since Bob may have picked * the introduction point maliciously */ - /* XXX Mike, you didn't read my comment above! :) -RD */ /* Alice will pick a new intro point when this one dies, if * the stream in question still cares. No need to act here. */ break; @@ -873,10 +871,8 @@ circuit_build_failed(origin_circuit_t *circ) break; case CIRCUIT_PURPOSE_S_CONNECT_REND: /* at Bob, connecting to rend point */ - circuit_increment_failure_count(); /* Don't increment failure count, since Alice may have picked * the rendezvous point maliciously */ - /* XXX Mike, you didn't read my comment above! :) -RD */ log_info(LD_REND, "Couldn't connect to Alice's chosen rend point %s " "(%s hop failed).", |