diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-08-15 15:37:23 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-08-15 15:37:23 -0400 |
commit | a3ffa1f76edbfdf091e50579c11d34166ec0551a (patch) | |
tree | f466395d6f72d4a5804d47bf1e9a744d1e8f0405 /src/or/rendservice.c | |
parent | d4634d1b72d660b1ea5ce9874fcd6b04a15968e9 (diff) | |
download | tor-a3ffa1f76edbfdf091e50579c11d34166ec0551a.tar.gz tor-a3ffa1f76edbfdf091e50579c11d34166ec0551a.zip |
Rename circuit_get_global_list to remove trailing _
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r-- | src/or/rendservice.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c index fb56dc0360..730e47f5cd 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -543,7 +543,7 @@ rend_config_services(const or_options_t *options, int validate_only) /* XXXX it would be nicer if we had a nicer abstraction to use here, * so we could just iterate over the list of services to close, but * once again, this isn't critical-path code. */ - TOR_LIST_FOREACH(circ, circuit_get_global_list_(), head) { + TOR_LIST_FOREACH(circ, circuit_get_global_list(), head) { if (!circ->marked_for_close && circ->state == CIRCUIT_STATE_OPEN && (circ->purpose == CIRCUIT_PURPOSE_S_ESTABLISH_INTRO || @@ -2375,7 +2375,7 @@ count_established_intro_points(const char *query) { int num_ipos = 0; circuit_t *circ; - TOR_LIST_FOREACH(circ, circuit_get_global_list_(), head) { + TOR_LIST_FOREACH(circ, circuit_get_global_list(), head) { if (!circ->marked_for_close && circ->state == CIRCUIT_STATE_OPEN && (circ->purpose == CIRCUIT_PURPOSE_S_ESTABLISH_INTRO || |