diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-02-05 21:39:29 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-02-05 21:39:29 +0000 |
commit | c8a689c9e8ce3a03c5815da2535b56812450d5ae (patch) | |
tree | fd1d285c68f4cbd0669de559fd00ab4b391833eb /src/or/rendservice.c | |
parent | a51deb9a9c7bf33ba353e008724c150bddde144b (diff) | |
download | tor-c8a689c9e8ce3a03c5815da2535b56812450d5ae.tar.gz tor-c8a689c9e8ce3a03c5815da2535b56812450d5ae.zip |
r17909@catbus: nickm | 2008-02-05 14:48:22 -0500
As planned, rename networkstatus_vote_t to networkstatus_t, now that v3 networkstatuses are working and standard and v2 networkstatuses are obsolete.
svn:r13383
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 2894702ee9..cc6e5d20e8 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -1123,7 +1123,7 @@ upload_service_descriptor(rend_service_t *service) /* Upload v2 descriptor? */ if (service->descriptor_version == 2 && get_options()->PublishHidServDescriptors) { - networkstatus_vote_t *c = networkstatus_get_latest_consensus(); + networkstatus_t *c = networkstatus_get_latest_consensus(); if (c && smartlist_len(c->routerstatus_list) > 0) { int seconds_valid; smartlist_t *descs = smartlist_create(); |