diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-11-20 12:03:46 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-11-20 12:03:46 -0500 |
commit | 336c856e52d211aad6b40d29986264f3277a1327 (patch) | |
tree | f1b7930199642989c52161a1b5547e3417ede195 /src/or/rendservice.c | |
parent | f15cd22bb7c8f4f7009417e50a827c5bcc656807 (diff) | |
download | tor-336c856e52d211aad6b40d29986264f3277a1327.tar.gz tor-336c856e52d211aad6b40d29986264f3277a1327.zip |
Make can_complete_circuits a static variable.
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r-- | src/or/rendservice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c index 353c671550..ead9f3fe66 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -3075,7 +3075,7 @@ rend_services_introduce(void) * an intro point to. */ smartlist_t *exclude_nodes = smartlist_new(); - if (!can_complete_circuit) + if (!have_completed_a_circuit()) return; now = time(NULL); |