diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-17 14:59:19 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-17 14:59:19 +0000 |
commit | 26632d59dd34aef4834ee9844adeab5131248bf7 (patch) | |
tree | 694c0654f8ae8194c1f2b5ce490990aa5f101821 /src/or/circuitbuild.c | |
parent | 514f99034fffcbfe6cd37d2b982c6c637e62f37e (diff) | |
download | tor-26632d59dd34aef4834ee9844adeab5131248bf7.tar.gz tor-26632d59dd34aef4834ee9844adeab5131248bf7.zip |
Rename or_is_obsolete and move it to or_connection_t where it belongs.
svn:r17642
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index c561ac7e6f..521d347360 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -358,7 +358,7 @@ connection_good_enough_for_extend(const or_connection_t *n_conn, *state_out = "in progress. Waiting."; *launch_out = 0; /* We'll just wait till the connection finishes. */ return 0; - } else if (n_conn->_base.or_is_obsolete) { + } else if (n_conn->is_bad_for_new_circs) { *state_out = "too old. Launching a new one."; *launch_out = 1; return 0; |