diff options
author | Roger Dingledine <arma@torproject.org> | 2003-11-12 19:34:34 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-11-12 19:34:34 +0000 |
commit | f5829aa723fddb9e48f07a8e9830924c1bd8f5fb (patch) | |
tree | f0bbbf7cbf9f9346440f233c772fc0d6ced366d5 /src/or/circuit.c | |
parent | 9358381d83d0d27db58c94cf01ab45c16292d378 (diff) | |
download | tor-f5829aa723fddb9e48f07a8e9830924c1bd8f5fb.tar.gz tor-f5829aa723fddb9e48f07a8e9830924c1bd8f5fb.zip |
lay groundwork for EntryNodes and ExitNodes
svn:r805
Diffstat (limited to 'src/or/circuit.c')
-rw-r--r-- | src/or/circuit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuit.c b/src/or/circuit.c index 51d9cd1442..07456e082f 100644 --- a/src/or/circuit.c +++ b/src/or/circuit.c @@ -766,7 +766,7 @@ int circuit_send_next_onion_skin(circuit_t *circ) { * circuit that one is ready. */ connection_ap_attach_pending(); return 0; - } else if (r<0 || !router) { + } else if (r<0) { log_fn(LOG_WARN,"Unable to extend circuit path."); return -1; } |